R For Qualitative Analysis

Поделиться
HTML-код
  • Опубликовано: 5 ноя 2024

Комментарии • 36

  • @diarmuidobriain584
    @diarmuidobriain584 6 лет назад +5

    Eren, all was going well until "package ‘wordVectors’ is not available (for R version 3.4.4)"

    • @linemariebreistrand6614
      @linemariebreistrand6614 6 лет назад

      same here....

    • @NELSON64916
      @NELSON64916 6 лет назад

      Same here

    • @RudBoy81
      @RudBoy81 5 лет назад

      Hi Diarmuid and all the others facing the same issue. Here is a fast and effecitive workorund for this problem. Use the following two commands in the command prompt: require(devtools) "this is the package you would have already dwonloaded and installed before"
      install_github("github.com/cpeeples/wordVectors")
      That should do the job! ;)

    • @erenkavvas6502
      @erenkavvas6502  2 года назад

      This is very true and thank you for posting this point. I think that in terms of structure the concepts are still the same but yes, unfortunately, the package has been tweaked a bit since 2016.

  • @robertdean3966
    @robertdean3966 7 лет назад +3

    This is by far the most down to earth/practical explanation of how to use an R package I have seen since deciding to learn R about 3 years ago. (I'm not surprised it was created by a qualitative researcher.) I have been stuck in grounded theory land, surrounded by memos, crumpled up note cards, and empty highlighters, and just couldn't let myself see the light (i.e., the utility of using software for qual analysis). Thanks!.

    • @erenkavvas6502
      @erenkavvas6502  7 лет назад

      Thanks, Robert! That's a really nice compliment. My hope was that the video would save a few crumpled note cards!

  • @KKmovesToMars
    @KKmovesToMars 5 месяцев назад

    thank you for posting this. Would love to see how you're using R now

  • @nesw360
    @nesw360 4 года назад +4

    Thanks for the video. Really interesting to see some examples of qualitative research in R. If you're still unsure of the pronunciation, he package magrittr is named after the artist René Magritte since the package introduces the concept of the 'pipe' to r. One of Magrittes most famous pieces is "Ceci n'est nai pas une pipe"; so the package name is a nod to that.

  • @aaronlee5398
    @aaronlee5398 8 лет назад +1

    Your video helped me to study Word2Vec and apply dendogram and text map.
    Thank you so much! I will recommend this video to my graduate school students at PNU.
    See you again through RUclips!!

  • @eduardoparedes8732
    @eduardoparedes8732 3 года назад +2

    great explanation. Thank you for your time

    • @rodolfobastianvallekendall
      @rodolfobastianvallekendall 2 года назад

      Eduardo, What results did you get? Did you get the same results as her video? Or was it different?
      Output:
      revolution measure weather problem
      1.450086e-06 9.693765e-02 1.086022e-01 1.257814e-01
      through sugar put present
      1.357928e-01 1.369914e-01 1.471271e-01 1.479940e-01
      To generation
      1.543559e-01 1.564817e-01

  • @LonimiTona
    @LonimiTona 6 месяцев назад

    I just love your flowery slides lol.

  • @victorcrespin9110
    @victorcrespin9110 2 года назад

    You were ahead of time

  • @aizhannartay
    @aizhannartay 5 лет назад +4

    thanks for making coding so beautiful :')

  • @Viflanzoff
    @Viflanzoff 5 лет назад +5

    Any solution to "package ‘wordVectors’ is not available (for R version 3.4.4)"?

  • @selenavengco5624
    @selenavengco5624 4 года назад +4

    I get an error when i try to run the inital applesauce code. It says "Error in if (binary) { : arguement is of length zero
    What does this mean and how can i fix it?

    • @erenkavvas6502
      @erenkavvas6502  2 года назад

      I think that the once of your data inputs is empty. There might be a possible error when it's reading the document/data set.

  • @saeedewu129
    @saeedewu129 2 года назад

    I am following this video on 3rd october, 2022. is this package still available?

  • @priyankashah2997
    @priyankashah2997 4 года назад +3

    I am getting the following error. Can someone help? I am trying to learn some text analysis in R.
    Error in train_word2vec("C:/Users/Priyanka Shah/Desktop/r prac/textsample.txt", :
    could not find function "train_word2vec"

    • @raykory8499
      @raykory8499 2 года назад +1

      Did you download all the packages?

    • @erenkavvas6502
      @erenkavvas6502  2 года назад

      There might be something wrong with the path or the document itself.

  • @sebastiancheong2385
    @sebastiancheong2385 6 лет назад +1

    "Error in if (binary) { : argument is of length zero"
    Hello! I followed your instructions above and I saw this error. Do you know anything on how to fix this? Thanks!

    • @albushkixhaja7885
      @albushkixhaja7885 5 лет назад +2

      You could try a simpler code without an output file:
      > applesauce

  • @defencenewsanalysis7712
    @defencenewsanalysis7712 5 лет назад

    Can you please post the script here, so that I can copy. My scripts are not working

  • @luisfelipe-copy5924
    @luisfelipe-copy5924 4 года назад +1

    That is weird slide layout

  • @rodolfobastianvallekendall
    @rodolfobastianvallekendall 2 года назад +1

    Hi, thanks for your work, and for teaching us.
    Do you know why am I getting a different output compared to yours?
    Input:
    library(magrittr)
    library(devtools)
    library(wordVectors)
    applesauce % nearest_to(applesauce[["revolution"]] %>% round(3))
    Output:
    revolution measure weather problem
    1.450086e-06 9.693765e-02 1.086022e-01 1.257814e-01
    through sugar put present
    1.357928e-01 1.369914e-01 1.471271e-01 1.479940e-01
    To generation
    1.543559e-01 1.564817e-01

    • @erenkavvas6502
      @erenkavvas6502  2 года назад

      Hi! I'm sorry but I think this code is a bit outdated and needs minor adjustments. I think that the outline in the video would be a good structure to use for coding this but you might need to look up a few adjustments on StackExchange. Good luck!