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! ;)
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.
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!.
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.
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!!
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
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?
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"
"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!
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
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!
Eren, all was going well until "package ‘wordVectors’ is not available (for R version 3.4.4)"
same here....
Same here
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! ;)
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.
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!.
Thanks, Robert! That's a really nice compliment. My hope was that the video would save a few crumpled note cards!
thank you for posting this. Would love to see how you're using R now
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.
Oh cool thanks for the info!
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!!
great explanation. Thank you for your time
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
I just love your flowery slides lol.
You were ahead of time
thanks for making coding so beautiful :')
Any solution to "package ‘wordVectors’ is not available (for R version 3.4.4)"?
Now is word2vect
@@Harlet.Harlet thanks
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?
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.
I am following this video on 3rd october, 2022. is this package still available?
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"
Did you download all the packages?
There might be something wrong with the path or the document itself.
"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!
You could try a simpler code without an output file:
> applesauce
Can you please post the script here, so that I can copy. My scripts are not working
That is weird slide layout
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
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!