Plotting in R tutorial: Gorgeous graphs with ggplot2

preview_player
Показать описание
Learn how to use the ggplot2 library in R to plot nice-looking graphs and find out how to customize them in this step-by-step guide.

Loading in the data 01:10
Working with times using lubridate 03:05
Your first ggplot 05:58
Different geoms 08:37
Fixed variables and aesthetics 09:05
Faceting 11:44
Histograms 13:00
Converting a variable into a factor and accessing help 14:05
Bar graphs 16:05
Stacked bar graphs 17:07
Grouped bar graphs 18:34
Proportion bar graphs 20:06
Basic heatplot 21:30
Advanced heatplot, including labels, new colours and text 25:54
Рекомендации по теме
Комментарии
Автор

Loved that at 14:00.

A good tutorial by the way. Nice clarity of video and audio quality makes it easy to focus on content.

ajeetis
Автор

Now I know the relationship between yawning and R. R and yawning are inversely proportional.

AqleemAbbas
Автор

This got me smiling throughout... I actually enjoyed the video! :)

poisegirl
Автор

Thanks for yawning in my ear. Good stuff.

aecnqewimnazxclwdxl
Автор

This is a very clear tutorial. Thank you very much.

henrymazhokota
Автор

hi delta DNA can I ask a question on plotting please

Jonpaulim
Автор

if i have categorical values like (Bad, Good, V Good, Excellent) .. How i can order those values in Histogram bar plot ...

ismaielahmed
Автор

im using R for powerbi, and i have a looot of columns with spaces, how to deal with spaces ?

lexh
Автор

Hi! Should I still use the query for the CSV file I got from the link?

benjlopez
Автор

@deltaDNA, I could see that you have an overlapping values on X axis at 12:32. How do I deal with this as i have the same issue.

ayodejiologun
Автор

Thank you so much for the very useful video.

a.e.mahamedi
Автор

set.seed(10)

library(data.table)
tabulka = data.table(A = rnorm(10),
B = 1:10,
C= 10:1,
D= rep(c("a", "b"), each=5)
)
tabulka[2, 1]=NA
tabulka[4, 1]=NA
tabulka

tabulka[c(1, 3, 5, 6, 7, 8, 9, 10), mean(A)]
tabulka[, E:=B^2]
tabulka[, F:=sum(B), by=D]

Hey-mjjg
Автор

Thank you for your video tutorial! I have a quick question. If my data size is over 1GB, and if they are a number of data columns, rows, attributes to be shown on geom_bar() or geom_point(), how would I set the range of those data on my projection? Thank you in advance!

shinkevin
Автор

So I want to plot different stress and food factors along the x axis and distance along the y how do I go about putting this in the the script you showed? I didn't really get how you scripted them

jennaproctor
Автор

Tell your boss to allow you to sleep, so your not yawning all the time

jayjayf
Автор

Hi, out of curiosity where's your accent from, you really pronounce the H in 'what', 'which', etc., thanks for the tutorial also!

Автор

I can't seem to find the downloadable data and tutorial after signing up for the page. Could you advise? :)

dpippatan
Автор

Recording in R-tutorial while being so tired is kind of dubious.

punchline
Автор

All the breathing into the microphone made id VERY hard to stay focused. Other than that it was a good video.

Kampfus
Автор

Does somebody else head hurts really bad at the beginning on this video or is just me?

MarcusSanchez