Get my FREE cheat sheets for R programming and statistics (including transcripts of these lessons) here: www.learnmore365.com/courses/rprogramming-resource-library
@MCshaneization2 жыл бұрын
Zooming in so we can watch on our phones is just one example of your fabulousness, you are the absolute GURU of R tutorials!
@RProgramming1012 жыл бұрын
So nice of you - thanks for the great feedback!
@lody331002 жыл бұрын
I swear you're unbelievably talented at all levels of creating content
@RProgramming1012 жыл бұрын
So nice of you - thanks for the great feedback!
@brittnyfreeman36502 жыл бұрын
The zoomed in text for cell phone viewers is such a nice touch! 👌 One if my favorite ways to consume your content!
@RProgramming1012 жыл бұрын
Glad you enjoy it! Thank you for the feedback!
@addopatrick6042 Жыл бұрын
I can't but say, Greg, I admire you a lot. Thanks for this comprehensive and step-by-step video for us.
@prai4522 жыл бұрын
Fabulous !!! Just excellent. You have been absolute savior! Thank you very much.
@RProgramming1012 жыл бұрын
Glad it was helpful! Thank you :)
@draprincesa012 жыл бұрын
the most amazing video ever , i just love all your videos
@RProgramming1012 жыл бұрын
Thanks for the great feedback Karen. Much appreciated!!
@josephkimote6612 жыл бұрын
Very helpful, invaluable programming.Keep more coming
@RProgramming1012 жыл бұрын
More to come! Glad it was helpful! ☺
@romanvasiura67052 жыл бұрын
Thank you for this amazing channel!
@RProgramming1012 жыл бұрын
Thank you too! Glad you enjoyed it!
@godlovemehaha Жыл бұрын
Just found your channel. Very helpful . Thank you
@RProgramming101 Жыл бұрын
Glad it was helpful! You're welcome :)
@moisengwa99042 жыл бұрын
Fabulous teacher!!! Could you please show us how to add the numbers to the bar charts?
@tuanatnguyen98782 жыл бұрын
Really detailed and useful tutorial. Thanks a lot
@RProgramming1012 жыл бұрын
Glad it was helpful! Thank you for your feedback!
@annasognosia2 жыл бұрын
Thank you. It's very easy to follow.
@RProgramming1012 жыл бұрын
Glad it was helpful! Thank you!
@onkar76512 жыл бұрын
super useful in visualization!!
@RProgramming1012 жыл бұрын
Glad to hear that!
@patrickrankin184 Жыл бұрын
Great videos. Thank you
@RProgramming101 Жыл бұрын
Glad you like them! Thanks
@minjeoungkim93032 жыл бұрын
Really helpful. Thanks!
@RProgramming1012 жыл бұрын
Glad to hear it! Thank you for your feedback!
@zanjeeltariq9079 Жыл бұрын
THANKYOU SO MUCH!!!!!!
@InsideBest365 Жыл бұрын
Learned a lot thanks
@andresrengifo78012 жыл бұрын
¡Thanks this content expand the universe of r !
@RProgramming1012 жыл бұрын
Thanks for watching and you are welcome!
@BulLiT24012 жыл бұрын
Thank you so much!
@RProgramming1012 жыл бұрын
You're welcome!
@petongtitus Жыл бұрын
when you use 'mutate(.)' (at minute: 20:17), does the original data change accordingly? so on the gss_cat %>% View() we will be seeing column 'partyid' in 4 categories instead of so many (i think about 10 categories)?
@greatmind38422 жыл бұрын
This si helpful. Thanks so much. Please any videos on how to average scores on a multi-item scale? Is there anyway of reaching you for further questions? Thanks.
@johnmcghee3963 Жыл бұрын
I was thinking the same. I guess not 😂
@mugomuiruri23132 жыл бұрын
Very much explained.goood Afrika.kenya
@RProgramming1012 жыл бұрын
Glad you liked it
@castel329 ай бұрын
Thanks. This is great. But I was not able to make it work for my case. I have a stacked barplot with 3 categories (A,B,C) for each X and want to order by decreasing % of A regardless the other 2 values. Also, can you filter and sort the x factor in a certaing way and then save it/keep this way and use for the unfiltered data. Thanks a lot. Awesome content.
@mugomuiruri23132 жыл бұрын
Wonderful
@RProgramming1012 жыл бұрын
Thank you! Cheers!
@Sports_Encyclopedia2 жыл бұрын
Make a playlist regarding geo-density in mapping
@RProgramming1012 жыл бұрын
Great suggestion! Thanks
@laynehansen621611 ай бұрын
I need to change my text-based factors into numerical values and am having a hard time finding how to do this. Could someone give me some guidance to a video or blog? I need this in order to run some correlations and regressions.
@Sed1572 жыл бұрын
How could you get the exact number of a bar in these charts? What i mean is, you got the count at the y axis and you see approximately what the count is. Let’s say it is between 15.000 and 10.000 but you cannot tell the exact number. Is there any function to show either the exact number of the bar in/on the bar itself or to make the y axis with more detail so it is shown like this: 15.000 , 14.900, 14.800 …..
@itamar.j.rachailovich3 ай бұрын
The following command doesn't work for me gss_cat %>% select(race) %>% table() it says "Error in select(., race) : unused argument (race)" However, changing it to the next command solve the problem, and I get the same output as in your video: gss_cat %>% pull(race) %>% table()
@mugomuiruri23132 жыл бұрын
I am getting you Loud and clear here in afrika place called kenya .world have become a small village really
@RProgramming1012 жыл бұрын
I've been to Kenya - what a lovely country. Say hello to your fellow countrymen for me please
@mugomuiruri23132 жыл бұрын
@@RProgramming101 Welcome. I will greet all for you.Your teaching will go a long way if u didn't know.welcome
@Sports_Encyclopedia2 жыл бұрын
I have a small query can you help me with that. Please
@Sports_Encyclopedia2 жыл бұрын
I have seen all you videos and always recommend you, will be thankful if you all me get out of this issue
@jackymo8202 жыл бұрын
Don't quite get the difference between select (race) and pull (race)
@souhaibsebbane56232 жыл бұрын
@Jacky Mo, He actually explained it, using SELECT will extract the race column as a DATA.FRAME, whereas using PULL will extract it as a FACTOR type which is the desired outcome in this case.
@jackymo8202 жыл бұрын
@@souhaibsebbane5623 thanks. so we need to memorise which function takes data.frame which takes factor. Are there any tips on that?