Get my FREE cheat sheets for R programming and statistics (including transcripts of these lessons) here: www.learnmore365.com/pages/membership-r-programming-data-visualization-and-research-methods
@Shawn-gm4cf2 жыл бұрын
To parrot others, you always have premium R content. Probably the only resource where I look forward to seeing it in my KZbin feed.
@Schmelena2 жыл бұрын
You really make the best R-videos. Always feel motivated to work with R after watching this. Thank you very much!
@gregmartin2 жыл бұрын
Thanks 👍🏻👍🏻👍🏻👍🏻 glad to hear it.
@opal-r2h2 жыл бұрын
I hated R till I found your channel , I know there are a million comments telling you same thing but you are one of the best R teachers. I hope you are having a good day wherever you are in the world ❤
@RProgramming1012 жыл бұрын
Thank you so much, Farida. I really appreciate your feedback 😀
@makemymarket1772 Жыл бұрын
Imagine have you as a professor at the university, everyone would pass. Big thanks to you!
@RProgramming101 Жыл бұрын
Wow Thank you for your kind words, I really appreciate it!
@matthewharvey441411 ай бұрын
The best educational R videos I have found on KZbin, thank you for the helpful information.
@coldwarifyful2 жыл бұрын
so far you have taught R in the best way. Please do the complete R tutorials with the aim of cracking a data analyst job. We really do not know what we need to cover as in for performing good at data analyst jobs. You can also make a video depicting an overall picture or syllabus for R, for different kind of analysis which will help us to know what all we have to learn to get a job as a DA first, and then take it from there. Please be consistent. You are amazing.
@data_kom2 жыл бұрын
I love your style of teaching. Your approach makes coding easy. Thanks for the great work you’re doing.
@RProgramming1012 жыл бұрын
You're very welcome! Glad you enjoyed it!
@zique711Ай бұрын
You Sir. are the best educator when it comes to teaching R. I love your enthusiasm for the subject; keeps me engaged.
@RProgramming10115 күн бұрын
I'm so glad that you like the content. Thanks for the feedback.
@franj36282 жыл бұрын
Very well explained tutorial, as always. Please, keep posting new videos.
@RProgramming1012 жыл бұрын
😀 will do 👍🏻
@dougedmunds Жыл бұрын
A note regarding code at 5:03. There is a coding difference between using the |> pipe instead of %>%. If using |> , the final "summary" requires parentheses, i.e., summary(). (R version 4.3.0)
@yizheng62992 жыл бұрын
Thanks Greg, R Programming 101 is the best R programming tutorial I have ever found !
@RProgramming1012 жыл бұрын
Thank you for the feedback!
@kottelkannim4919 Жыл бұрын
A tidyverse implementation of prop.table(table(AirBags, Origin))*100 is: Cars93 %>% group_by(AirBags,Origin) %>% summarise(number = n()) %>% ungroup() %>% mutate(propor = round (number / sum(number),3 )*100) %>% pivot_wider(id_cols = "AirBags" , names_from = Origin, values_from = propor) or even a shorter one using *count()* to replace the aforementioned 2nd and 3rd rows : Cars93 %>% count(AirBags,Origin) %>% mutate(propor = round (n / sum(n),3 )*100) %>% pivot_wider(id_cols = "AirBags" , names_from = Origin, values_from = propor)
@somnusnemoris2903 Жыл бұрын
Thank you so much, I was wondering about that part
@boojaado9 ай бұрын
Thanks for providing these lines of code. I added the first part to this. Cars93 %>% group_by(AirBags,Origin) %>% summarise(number = n()) %>% ungroup() %>% pivot_wider(id_cols = "AirBags", names_from = Origin, values_from = number)
@frankjr37872 жыл бұрын
Hi Greg - would it be possible to make a video on creating publication ready summary tables using r and r-markdown? Particularly summary statistics tables and regression tables
@DH-tv6wl Жыл бұрын
Interested in this too. Have you tried the stargazer package?
@dopamining69322 жыл бұрын
Really love the tutorials. Is there any chance there could be a playlist/video on user-defined functions and loops in the future? I'm finding it hard to find a good tutorial that goes through it all slowly. Cheers.
@dingaroo20032 жыл бұрын
I should have gone through this set of videos months ago! Would have saved me many sleepless nights and project delay!
@RProgramming1012 жыл бұрын
Glad you find them useful!
@roxisrocks Жыл бұрын
You are an absolute rockstar, thank you very much. R is amazing, and you are an equally amazing teacher.
@jamesleleji69842 жыл бұрын
Your videos are always illuminating and a great reference when working in R. Please do a tutorial on difference in differences using R. Thanks
@aseelaraji70452 жыл бұрын
Amazing way as Usual Thanks 🙏 keep up the great work looking forward for the next episode
@RProgramming1012 жыл бұрын
Thanks 👍🏻👍🏻👍🏻
@ray564k2 жыл бұрын
Great video - thanks very much! Thanks for explaining that last part slowly too. One minor comment -> @10.02 I couldn't see your full console, so missed that there needed to be a close brackets, pipe operator before the 'arrange' function starts.
@CaribouDataScience Жыл бұрын
Thanks, one note if you use the summary() on a column that contains factors it will return the number of rows for each factors.
@romanvasiura67052 жыл бұрын
Thank you for this lesson. Step by step I am begining to be a big fun of your KZbin channel 😀) P.S. Thank you for these valuable knowledge what you share for us.
@RProgramming1012 жыл бұрын
Most welcome! Glad you liked it!
@chetmanichaudhary56858 ай бұрын
Very helpful. How to compute with the data that contains greater than or lesser than (6) in R.
@fredrickombede8802 жыл бұрын
The best place to learn R, I really enjoy. Thanks
@RProgramming1012 жыл бұрын
Happy to hear that! Thank you for the feedback.
@andresrengifo78012 жыл бұрын
Great videos about R, congratulations
@RProgramming1012 жыл бұрын
Thanks very much. 😃😃
@MrLunary2 жыл бұрын
Great videos! Keep the good stuff coming!
@misukuhillsКүн бұрын
Quite refreshing. How do I stop random numbers in a data set?
@EguonoOgundare2 жыл бұрын
wonderful video. Greg, I have learned so much from your videos. Thank you.
@RProgramming1012 жыл бұрын
Thanks for the feedback. Much appreciated. I'm glad that you found it helpful.
@BenjaminLiraLuttges2 жыл бұрын
16:29 Rather than that you can simply do Cars93 %>% count(Origin,AirBags)...
@RProgramming1012 жыл бұрын
Thanks !!! :)
@MCshaneization2 жыл бұрын
Extremely well thought-out and practical!
@ikeforshort5363 Жыл бұрын
I am so grateful you took the time to explain 'everything.' I paid for a course and only learned a fraction of what I'm learning with your videos. I would love to know how to change the UTC timestamp into a particular zone. I am working with a crime dataset and trying to figure out #1 what day of the week most occurred and what time they occurred. I've read numerous articles, but I need help understanding the concept. ♥
@ikeforshort5363 Жыл бұрын
Just found your Lubridate video... heading there now ☺
@spyrostsilimparis41012 жыл бұрын
Your videos are excellent and you explain everything in a very simple way, I can say that I have filled in a lot of gaps, especially in visualisation. I was wondering if you will create more videos or specifically videos regarding loops. Thank you!
@spirosgyparakis88882 жыл бұрын
Great video, thank you! Is there any package that can be used to created the coloured table with the percentage indicator you showed at the beginning of the table? Thank you!
@nadyamoscow24612 жыл бұрын
Many thanks once again for your fantastic course!
@RProgramming1012 жыл бұрын
Happy to hear that! You are most welcome!
@boojaado9 ай бұрын
Hello, where is the 'analyze' tutorial? I do not see just one video. I do see the playlist for regressions, I want to assume these are the videos for 'analyze'.
@al24953 Жыл бұрын
wonderful lecture
@Roberttherobot69 Жыл бұрын
can u help summaries data from experiment such as CV% Significant data or not sig and how to table them
@easydatascience2508 Жыл бұрын
You can try mine too. The channel has both Python and R playlist for fundamentals. And source files downloadable.
@phumzilendlebe27262 жыл бұрын
Awesome! Thank you as always....🙏 You Rock!!!!
@RProgramming1012 жыл бұрын
Most welcome! Glad you liked it!
@natashasamuel93462 жыл бұрын
Great class. Keep up the good work. Thank You, Natasha Samuel
@RProgramming101 Жыл бұрын
Thank you! 😃 thanks for the great feedback!!
@muhammedhadedy45702 жыл бұрын
Great as usual. Thank you so much for your great videos.
@HoCkEyLeGeNd588 Жыл бұрын
HELP! That output table you made (with the period as a name)....how do I change the name of this or export the output as a CSV. None of the normal "write.csv" functions work when I try to extract the data. The sheet just comes back blank.
@blackpanda432 жыл бұрын
Hi, say i have two tables in R and i want to see which rows in a column in table 1 are also there in a column in table 2, how would I go about?
@MadhumatiManjunath Жыл бұрын
Wide_data is showing up as NULL in my RStudio's environment and hence pivot_longer is also throwing up errors. Please let me know what to do in this instance.
@jababnamgay6366 Жыл бұрын
Very helpful sir
@sullivanfam01 Жыл бұрын
Very helpful video! Do any videos explain how to create the prop table using the tidyverse?
@ThomasWilliswin308 Жыл бұрын
Did you ever find a solution for this question?
@zoubidanemer45002 жыл бұрын
Thank you for these beautiful videos. I'd be really happy if you made one on packages that deal with spatial data like cartography. Thanks for your efforts 👍
@RProgramming1012 жыл бұрын
Great suggestion! Thanks for your feedback 😀
@brianglong11 Жыл бұрын
Excellent videos
@RProgramming101 Жыл бұрын
Glad you like them!
@onurucar11122 жыл бұрын
Love your videos, please keep uploading them :)
@yaweli29684 ай бұрын
I was thinking maybe drop_na for both vore and sleep_total. What if vore had no NA but its associated sleep_total had NA? Won’t it be best practice to drop NA in both? Oh maybe I am confused.
@vijaybm42022 жыл бұрын
Very well explained 👍
@worldwide66262 жыл бұрын
What does number=n() do inside the summarise parameter?
@skcarterr Жыл бұрын
The prop table done with DPLYR didn’t give percentages.
@donkeyally2 жыл бұрын
Great R tutorial! I’m looking forward to learn. from you more =) Anyway, do you have any recommended book about R for statistics and data science for further reading?
@paulyoung38972 жыл бұрын
Thanks so much. These are great. Keep it up.
@space5more9 ай бұрын
pivot not the issue, but lingering around number = n(). .. Thank you -
@amosarubi84682 жыл бұрын
I love you man! Thank you so much.
@RProgramming1012 жыл бұрын
Happy to help! Thanks for watching
@masreshabiraraАй бұрын
fantastic guy
@RProgramming10115 күн бұрын
Thanks so much
@DB-kv3wu9 ай бұрын
Great thanks!
@maidach6964 Жыл бұрын
Can you please help me i am trying to run this code but it shows error
@maidach6964 Жыл бұрын
dstats
@raghavkhandelwal75557 ай бұрын
Hello Sir, sir can you please suggest a good youtube channel from where i can learn Python
@flaviusradac46022 жыл бұрын
Can you be so kind to make a dummy variabile model please!!... Thank you! I love your videos, they are very helpful.. Thank you! :)
@max59162 жыл бұрын
New video 😍
@RProgramming1012 жыл бұрын
😀😀😀
@vincenzo42592 жыл бұрын
Thanks
@RodBarkerdigitalmediablog2 жыл бұрын
msleep %>% drop_na(vore)%>% group_by(vore)%>% summarise(Lower = min(sleep_total), Average = mean(sleep_total), Upper = max (sleep_total), Difference = max(sleep_total)- min(sleep_total), arrange(Average)%>%View() arrange(Average)%>%View() Error in View : object 'Average' not found
@faribazare73502 жыл бұрын
i get this error too
@drsam7655 Жыл бұрын
There is a close parenthese and a pip operator missing befor arrange
@saadalhumaid3959 Жыл бұрын
@@drsam7655 thank you
@HugoLopez-ih4ut2 жыл бұрын
Why is it zoomed in too much!
@608er4 ай бұрын
?
@sojibulislam10042 жыл бұрын
You really make the best R-videos. Always feel motivated to work with R after watching this. Thank you very much!