Dave, I've done several trainings during my career, both online and in-person, and I can assure you that your teaching style is the best I've ever known. Congratulations, you have the gift. Well done!
@ahmadalamer594 жыл бұрын
Thank you for your contribution for the world David! you are amazing and your parents are proud of you.
@VijayKumar-pd8mu7 жыл бұрын
Excellent Explanation, clear understanding about the topic. if anyone want to learn text analytics this is the best one .
@ambatista19827 жыл бұрын
Great video. I'm from Brail, and my level of English is beginner. but his teaching is very good, and I understood the idea and examples well. Thank you. I signed the Channel and left my like! A "hello" from Brazil to you!
@AnalyticsMaster7 жыл бұрын
Really appreciate your style of teaching Dave..... u are a super cooooooool teacher....
@Datasciencedojo7 жыл бұрын
@Anand Subramanian - Thank you for the compliment, always great to get confirmation! Glad you liked the video!
@dreznik6 жыл бұрын
length(which(!complete.cases(df)) can be written as sum(!complete.cases(df))
@bexleymike7 жыл бұрын
Great video, Dave! This is just what I've been looking for.
@Datasciencedojo7 жыл бұрын
@Bexleymike - Glad you like the video!
@mAcCoLo6667 жыл бұрын
Wonderful content. Just what I need to get up to speed for my university project about text mining :D
@sophiej46054 жыл бұрын
Thank you so much! If anyone has errors to replicate the lecture, use the codes and dataset the speaker uploaded. The link is above.
@vipulgupta70625 жыл бұрын
Great video...to start with..nice job
@gezahagnnegash97403 жыл бұрын
Thanks for sharing . It's really helpful for me
@Datasciencedojo3 жыл бұрын
Glad you liked it, Gezahagn.
@kristyburns23635 жыл бұрын
Love love love the way you teach! Thank you 🙏
@goodmanshawnhuang4 жыл бұрын
Great work, thanks David for the wonderful explanation.
@OpalCrossCoaching3 жыл бұрын
This is great content on text mining in R. I also have a channel that discusses text mining in R on data from the web, PDF documents and data frames.
@163ii3 жыл бұрын
Well articulated and clear. Thanks so much for this video.
@kobeoncount11 ай бұрын
Dave, thank you for the brilliant series. Can you please tell if the codes in this series would be applicable to a project that aims to makes predictions on 3 categories (positive/neutral/negative)? Is there any importing detail I should know if I want to go for 3 categories? :)
@TheShekhar917 жыл бұрын
Hi @Dave, While executing the below code I get an error, can you please comment on this: library(ggplot2) > ggplot(spam.raw, aes(x = TextLength, fill = Label)) + theme_bw() > + geom_histogram(binwidth = 5) + labs(y = "Text Count", x = "Length of Text", + title = "Distribution of Text Length with Class Lebels") Error in +geom_histogram(binwidth = 5) : invalid argument to unary operator > Thanks, Shekhar
@Datasciencedojo7 жыл бұрын
@Shekhar Tanwar - This modified code works: ggplot(spam.raw, aes(x = TextLength, fill = Label)) + theme_bw() + geom_histogram(binwidth = 5) + labs(y = "Text Count", x = "Length of Text", title = "Distribution of Text Length with Class Lebels") HTH, Dave
@jonimatix7 жыл бұрын
Great video, thanks for this. Keep them coming!
@Datasciencedojo7 жыл бұрын
@jonimatix - Glad you liked the video!
@Tracks7777 жыл бұрын
Nice content! Keep it up!
@Datasciencedojo7 жыл бұрын
@MisterBassBoost - Glad you like the video. We will producing new videos each week. Stay tuned!
@rajkumar-hh2hg5 жыл бұрын
Excellent video, thanks for this. Can you make some video with a multi-label classification problem?
@AdityaRaj-cu7jm4 жыл бұрын
hey @Dave getting this as error package or namespace load failed for ‘quanteda’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): namespace ‘rlang’ 0.4.2 is already loaded, but >= 0.4.3 is required please help me out here please
@mohammedasadi5 жыл бұрын
Very helpful, thank you so much!
@nnennaumelloh88343 жыл бұрын
This is great! Thank you!
@haraldurkarlsson11472 жыл бұрын
David, The code for creating a new variable called spam.raw$Text.length
@مشاعل-ت7ظ4 жыл бұрын
Hi. what should i learn first? natural language processing or text analysis?
@karthik7777777 жыл бұрын
Wonderful video sir.. Do you have any lecture or material on unsupervised text analytics as well? unsupervised when I mean it is I have lots of server log and want to make some sense of out it.
@alexandregouveac6 жыл бұрын
Tkanks a lot for sharing your knowledge!
@davidcurrie25286 жыл бұрын
Kaggle has a download link for the spam.csv file - github doesn't seem to have a download option. Part 1 is great.
@TheShekhar917 жыл бұрын
Hey @Dave, It started working, thanks anyway :)
@mhjrt6 жыл бұрын
Great video, thanks!
@midwest0420035 жыл бұрын
pls i am getting this error "Error in socketConnection(port = port, server = TRUE, blocking = TRUE, : cannot open the connection" when i run "cl
@kebman3 жыл бұрын
I've always been curious about the usage of Neo4j and graph databases in conjuction with text analytics. Of course, I'm a complete noob in this field, but it never the less fascinates me. So how would you do that?
@mattRRgraham19964 жыл бұрын
HOW TO GET AROUND ERROR PRESENTED AT ~ @24:00 spam.raw$TextLength
@shagunsarraf231210 ай бұрын
Thank you so much.
@pradeepvelavali93216 жыл бұрын
Nice explanation. But one small question " how does it differentiate spam & ham data? , because everything we took is raw data & all are messages only here" . Thanks in advance.
@evry1loveronica6 жыл бұрын
what's the difference between text count and length of text? Thank you so much for the awesome tutorial
@marcoanelli20456 жыл бұрын
Very, very good.If they can teach a 58 year old physiscian, they can teach anybody... :-)
@kebman3 жыл бұрын
Lol I have never used R. Let's hope for the best, guys!
@sonjawap50447 жыл бұрын
R won't separate rows that contain quotation marks when I use read.csv. How do I solve this?
@rohitnagal37046 жыл бұрын
Here how we deal with corpus. And idf is negative in this case also ?
@shwetapatil56826 жыл бұрын
It's really amazing!! thank u so much.
@مشاعل-ت7ظ4 жыл бұрын
what if i want to exclude stop words from stop_words() list how can i do it? i tried to to make custom stopwords but it didn't work.
@gilltim57112 жыл бұрын
I'm running this in RStudio Cloud version, and when I run this line of code: spam.raw$TextLength
@93jackjoe6 жыл бұрын
Thank u so much! It's very much helpful!
@shunpeng39955 жыл бұрын
this is a great video for me!
@vanshjauhari36714 жыл бұрын
Hi Dave, my data is showing 2 missing values??
@cauliflower787 жыл бұрын
I am getting a error while reading the file: Error in make.names(col.names, unique = TRUE) : invalid multibyte string at 'v'
@Datasciencedojo7 жыл бұрын
@db-engineering - A couple of trouble shooting questions: 1 - Are you using the .CSV and .R files from the GitHub? 2 - What OS and version of R are you using?
@cauliflower787 жыл бұрын
Actually I was following the video and not using the code in github. After looking at the code in github adding the file encoding, I am not getting any error. Thank you very much for the awesome tutorial.
@Datasciencedojo7 жыл бұрын
@db-engineering - Glad you liked the tutorial and that you are now unblocked. Dave
@cauliflower787 жыл бұрын
In may laptop I have R version 3.3.2 and everything is working fine ( but its slow). I have R version 3.3.1 in a powerful workstation, where I do not have power to upgrade R. I am trying to run in with 3.3.1 but I am having hard time installing quanteda. I am getting following error. Error: package ‘RcppArmadillo’ 0.6.100.0.0 was found, but >= 0.7.600.1.0 is required by ‘quanteda’ * removing ‘/home/ruser_usapkota/R/x86_64-redhat-linux-gnu-library/3.3/quanteda’ Is there some workaround to successfully install ‘quanteda’ in R version 3.3.1?
@Datasciencedojo7 жыл бұрын
@db-engineering - My apologies on this, but I would strongly advise looking into updating R to the latest bits rather than try to deal with the network of varying package dependencies. In fact, I would suggest updating your laptop to the latest R version (i.e., v3.4.1 at the time of this writing). HTH, Dave
@jamesxiang10317 жыл бұрын
Hi Dave, Absolutely like your video, it helps me a lot on data analysis! By the way, what does spam.raw$Text do? I didn't see you create it earlier so I guess it is a command/function that R understand? Thanks, James
@Datasciencedojo7 жыл бұрын
@James Xiang - If I understand your question correctly you can interpret the R code along the lines of, "R, I would like you access the Text variable of the spam.raw data frame." HTH, Dave
@atelesteles40226 жыл бұрын
Hi if i want search one word in one location in twitter, how i do?? i used this code cand
@ShubhamRai066 жыл бұрын
like ur style : Don't hasitate... Good one
@kunpu5857 жыл бұрын
Hi, when I am trying the code in line 64 in my computer, it is said "Error in nchar(spam.raw$Text) : invalid multibyte string, element 634".Can you please help me to deal this problem?
@Datasciencedojo7 жыл бұрын
@Kun Pu - This is likely due the encoding of the sms text message data file. I would suggest getting the code and data file from the GitHub to see if that unblocks you. HTH, Dave
@roadofskyluis7 жыл бұрын
Hi Dave I got this when I run line 34 Warning messages: 1: In scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : invalid input found on input connection 'spam.csv' 2: In scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : EOF within quoted string
@Datasciencedojo7 жыл бұрын
@林以凡 - Have you downloaded the .R and .CSV files from the GitHub and see if this addresses your problem? Most folks find that getting the GitHub files allow them to troubleshoot issues they encounter. Let us know if you continue to run into issues with the GitHub files. HTH, Dave
@roadofskyluis7 жыл бұрын
I still got the issue, I downloaded your code and spam file on github. but this time issue happen more earlier. I run read.csv function and see this warning and object spam only include 20 obj. of 5 variables. 1: In scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : invalid input found on input connection 'spam.csv' 2: In scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : EOF within quoted string here is the spam object contains for first 6 rows: v1 v2 X X.1 X.2 1 ham Go until jurong point, crazy.. Available only in bugis n great world la e buffet... Cine there got amore wat... NA NA NA 2 ham Ok lar... Joking wif u oni... NA NA NA 3 spam Free entry in 2 a wkly comp to win FA Cup final tkts 21st May 2005. Text FA to 87121 to receive entry question(std txt rate)T&C's apply 08452810075over18's NA NA NA 4 ham U dun say so early hor... U c already then say... NA NA NA 5 ham Nah I don't think he goes to usf, he lives around here though NA NA NA 6 spam FreeMsg Hey there darling it's been 3 week's now and no word back! I'd like some fun you up for it still? Tb ok! XxX std chgs to send, a£1.50 to rcv NA NA NA
@roadofskyluis7 жыл бұрын
spam.raw
@othman826377 жыл бұрын
Hello Dave, salute you for your great initiative, very effective and organised, would it be possible to guide us on the following command : > spam.raw$TextLength
@othman826377 жыл бұрын
I manage it : iconv(spam.raw$Text, "ISO-8859-1", "UTF-8") and it works
@钱其玮6 жыл бұрын
Just want to mention that to configure "fileEncoding = "UTF-16"" to "mac" , then it works in the command: spam.raw$TextLength
@MrJfernandes77 жыл бұрын
Dave, I saw your post on linkedin and came to check it out. I cloned the Github repository and when I ran this code I got the following error. >>> spam.raw$TextLength
@Datasciencedojo7 жыл бұрын
@Jorge Fernandes - Interesting, I was able to replicate on my Mac. I have updated all the files in the GitHub to reflect the fix. Apologies for the bug! Dave
Hello Sir, I have a request, Can i use your code and the learning and demonstrate this whole in Bengali language and upload it, am I allowed to that. There are a lot of people who use this language and might be helpful for them to understand. As you know helping some one to understand in there mother tongue is the best way to teach. Thank You
OK, so what is R, say vs Voyant? or is R something else. Coming into this cold, not apparent. Thanks.
@desertrose006 жыл бұрын
everything stops working as soon as I run: "spam.raw
@UpDownMichelle6 жыл бұрын
This might be a silly question, but if you've installed ggplot or dplyr or any other package in a previous analysis (on the same machine), do you have to reinstall it EVERY time you want to use it? Or can you just install a bunch of packages once and then never have to do it again? Thanks for your videos, btw. I landed a pretty significant interview by watching these!
@MrShivam246 жыл бұрын
install everytime after you open R studio
@JuhiPandeyTiwari6 жыл бұрын
No need to install every time.You just need to load the packages using " library("package name") " command.
@arunabhlala5 жыл бұрын
@@MrShivam24 Not required
@yaoxie71397 жыл бұрын
Hi Dave, Thanks for the video. When I run the code spam.raw$TextLength
@Yao Xie - Did the solution from @Anubhav Dhiman address the problem?
@Datasciencedojo7 жыл бұрын
@Anubhav Dhuman - Thank you for the fix. I have updated the code in the GitHub to reflect this and tested on both Windows and Mac OS X under R v3.4. Dav
@Dhrittinagpal7 жыл бұрын
Thanks David..this reapply saved my day..but can you explain what does - fileEncoding="latin1" - mean?
@seamansun84354 жыл бұрын
when I run the rode"spam.raw$TextLength
@tmpcox4 жыл бұрын
same problem.... did you find the answer?
@seamansun84354 жыл бұрын
@@tmpcox I do not find the answer
@tmpcox4 жыл бұрын
@@seamansun8435 thx! Mhh i have just followed the rest of the intro course without that part, for so far no problems at all👍
@arunabhlala5 жыл бұрын
Does this series of videos give me the path to learn about extracting complex data in PDF file and then analysing them? Sir, please do reply
@rohitnagal37046 жыл бұрын
If we have to deal with 1 lakh articles then tfidf is relevant. Basically i am working on question answering algorithm
@slkslk78414 жыл бұрын
To the MALAYALI data scientist who noticed something at 23:42
@smritikalra39487 жыл бұрын
Hi I am facing an issue. When I pass this command, spam.raw$TestLength
@kylenash41126 жыл бұрын
the GitHub is not working. thanks Dave
@Datasciencedojo6 жыл бұрын
Hi Kyle, thanks for pointing that out. Both links work now!