Making Boxplots using R's ggplot2 Package

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

So helpful man! Keep up the good work. Very clear and concise.

mrpernickety
Автор

At 4:50, how do you show just 1 dose alone or 2 of 3, instead of all 3? I have been looking how to do it! Thanks!

JoseRojasMarin
Автор

I'd be interested in your Moodle course. How do I enroll?

faustin
Автор

tooth.box<- ggplot(data = df, aes(x = supp, y = len, fill = dose)) +
geom_boxplot()
may not work if "dose" is not formatted as a factor. use factor(dose)

tooth.box <- ggplot(data = df, aes(x = supp, y = len, fill = factor(dose))) +
geom_boxplot()

riverland
Автор

how do you organize your data? show your data! what is supp, len, dose. Yo do not explain it well.

adamgarcia
join shbcf.ru