1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-05 14:27:51 +02:00

Merge pull request #3385 from divayprakash/fix-r

Fix R ggplot error, closes #2237
This commit is contained in:
Divay Prakash
2018-11-02 14:56:00 +05:30
committed by GitHub

View File

@@ -789,7 +789,7 @@ install.packages("ggplot2")
require(ggplot2)
?ggplot2
pp <- ggplot(students, aes(x=house))
pp + geom_histogram()
pp + geom_bar()
ll <- as.data.table(list1)
pp <- ggplot(ll, aes(x=time,price))
pp + geom_point()