Тёмный

R visualisation with ggplot2 - intermediate 

UQ Library
Подписаться 4,2 тыс.
Просмотров 29 тыс.
50% 1

Опубликовано:

 

30 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 38   
@dawitzewde6654
@dawitzewde6654 3 года назад
I sincerely would like to say THANK YOU!!! You're simply amazing, and I now feel more comfortable plotting figures in R.
@uqlibrary
@uqlibrary 3 года назад
Thank you for the kind words! :)
@GibbyCoAm
@GibbyCoAm 4 года назад
I want to point out a think about the axis limits. It's preferable to use the fuction coord_cartesian() and chage the argument "ylim ="; that way it's not necesary to use a subset to plot the not displayed data and we avoid create warning messanges.
@uqlibrary
@uqlibrary 4 года назад
That's a very good point, thank you Daniel! I only learned about that technique later on, and although the solution in the video will be acceptable for a point geometry, it will be more problematic with other geometries, e.g. removing an entire bar rather than cutting it when using geom_bar() or geom_col(). Thanks again for pointing that out!
@lvcas9313
@lvcas9313 3 года назад
This playlist is mandatory for R beginners. I had a HARD TIME trying to build my first project because I did not know how tidyverse library works. Now I realize how simples it is si, how much code I write ahhaha. Now everything makes so much sense. The data manipulation takes so much time! And it is tempting to just go to excel do stuff Thank you!
@C05Mik
@C05Mik 4 года назад
Oh gosh, that Esquisse package is a time saver. Thanks for the great content !
@sskarwa74
@sskarwa74 4 года назад
You rock.. very good explanation
@eyadha1
@eyadha1 3 года назад
Very very helpful video. Thank you very much
@djangoworldwide7925
@djangoworldwide7925 2 года назад
This is a great begginers tutorial. by no means that was intermediate content
@abhishekkhilari3801
@abhishekkhilari3801 2 года назад
Thank you for the learnings.
@lyjujose4456
@lyjujose4456 4 года назад
Excellent tutorial. Great work
@theodule01
@theodule01 3 года назад
Can't thank you enough for such a clear tutorial. I am going to binge the playlist. Bless also the person who created esquisse too. Lots of love from Haiti!
@uqlibrary
@uqlibrary 3 года назад
Thank you so much for the kind words, Theodule! Glad it is helping :)
@MaxSales41
@MaxSales41 4 года назад
Greetings from snowy Michigan and thank you for an extraordinary and thorough demonstration of best practices!
@ДианаЗагирова-к7п
@ДианаЗагирова-к7п 2 года назад
Thank you for the clear tutorial! Very helpful :)
@abidhussainwani3028
@abidhussainwani3028 2 года назад
Too good brother. 💞
@alejandrorehor9051
@alejandrorehor9051 3 года назад
Amazing explanation! Thanks a ton !
@IarukaSkYouk
@IarukaSkYouk Год назад
I love you sir
@pinyichang4680
@pinyichang4680 2 года назад
ggplot
@nibasto
@nibasto 2 года назад
You're an excellent teacher, thanks so much for everything!!
@uqlibrary
@uqlibrary 2 года назад
Thank you for the kind words! :)
@SumitBasnet-so5tz
@SumitBasnet-so5tz 2 года назад
what to do if there is a 0 how do I change it to the NULL in the excel ?
@uqlibrary
@uqlibrary 2 года назад
You can replace all zeros with NA values (that's how R usually deals with missing or invalid data in dataframes). This replacement by logical indexing should work (where "exp_df" is your dataframe): exp_df[exp_df == 0]
@houdabouissane6423
@houdabouissane6423 Год назад
I felt stuck for a few days and I am so glad I found you. Thank you very much for this amazing video
@rajatgupta5984
@rajatgupta5984 3 года назад
getting this error when opening esquisse : > esquisse:::esquisser() Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : namespace ‘ellipsis’ 0.3.1 is already loaded, but >= 0.3.2 is required
@uqlibrary
@uqlibrary 3 года назад
Hi Rajat! First, of all, try with a fresh R session (close and reopen RStudio). If that fails, try to update your packages, or reinstall the ellipsis package on its own. See if that fixes it (or reveals another problem).
@mikigebre6939
@mikigebre6939 2 года назад
This is one of the best explanations for ggplot
@ramilkerimzade5568
@ramilkerimzade5568 3 года назад
After downloading, when I click on colour picker, it gives an error Error in tag("head", list(...)) : argument is missing, with no default
@uqlibrary
@uqlibrary 3 года назад
Hi Ramil! I'm not sure what the issue might be, but I would recommend the following: getting the latest version of R, getting the latest version of RStudio, and updating your packages. After restarting RStudio, see if the error persists. All the best!
@rajatgupta5984
@rajatgupta5984 3 года назад
#Help, in the histogram that you produced, what count does the y axis represent? It shall be population ideally, but that is in millions and not in hundreds, so what does that y axis indicate there?
@uqlibrary
@uqlibrary 3 года назад
Hi Rajat! The y axis in the histogram is a count of how many rows in the table fall in the corresponding bin. The idea of a histogram is to visualise the distribution of continuous data, therefore it divides the range into bins (i.e. the bars), and the height of the bar is "how many values fall in this section of the range". You can find a more detailed description of histograms on Wikipedia: en.wikipedia.org/wiki/Histogram
@HuyNguyen-rv9ge
@HuyNguyen-rv9ge 3 года назад
Thank you so much for very helpful tutorial. Do you have next presentations or tutorials at advanced?
@uqlibrary
@uqlibrary 3 года назад
Huy Nguyen: glad you enjoyed it! If you are looking for more workshops, all our R videos are in our playlist: ru-vid.com/group/PLmDEaZ20fWqCypV7S-trCPtVefHk4e0bU
@soumikchatterjee3996
@soumikchatterjee3996 4 года назад
It helps a lot. Thank you for this brilliant tutorial
@matjazgrafik
@matjazgrafik 4 года назад
You have mentioned that after you save a new project in R, some packages are already active in library. Not for older versions like 3.5.3.
@uqlibrary
@uqlibrary 4 года назад
The base packages like base, stats, methods, graphics, utils... etc. should be loaded when a new R session is started, as they are essential to the basic functioning or R, which shouldn't be different between 3.5 and 3.6. Are you sure you can't see anything ticked in your list of packages, under the "System Library" heading? You might also have to refresh with the grey circle arrow in the top right of the panel. It is true however that none of the user-installed packages (e.g. ggplot2) should load when starting R / creating a new project.
@traptijain8023
@traptijain8023 3 года назад
I am not getting options in Addins, for me it's blank
@uqlibrary
@uqlibrary 3 года назад
Did colourpicker install successfully? Which version of R and RStudio do you have? I'd also recommend restarting RStudio and checking again.
Далее
R and the Tidyverse: next steps
1:06:44
Просмотров 14 тыс.
R data visualisation with ggplot2 - introduction
49:07
Airpod Through Glass Trick! 😱 #shorts
00:19
Просмотров 268 тыс.
Лайфак года 😂
00:12
Просмотров 74 тыс.
# Rural Funny Life Wang Ge
00:18
Просмотров 692 тыс.
R data visualisation with RStudio: heatmaps
1:05:47
Просмотров 30 тыс.
R data manipulation with RStudio and dplyr
54:29
Просмотров 27 тыс.
How to Use Better Colors in ggplot (3 Easy Ways)
7:12
Просмотров 1,3 тыс.
How to create your own custom ggplot2 theme (CC152)
25:04
Advanced ggplot    (episode #1)
13:44
Просмотров 15 тыс.
Airpod Through Glass Trick! 😱 #shorts
00:19
Просмотров 268 тыс.