Recently Published
R For Data Science_Chp 3 Exercises
Here are practice exercises as Listed in the book: R for Data Science by Garrett Grolemund and Hadley Wickham
MPG Data Set Analysis-3
ggplot(data = mpg) +
geom_point(mapping = aes(x = class, y = drv))
MPG Data Set Analysis-2
ggplot(data = mpg) +
geom_point(mapping = aes(x = class, y = drv))
Highway Miles per Gallon (Hwy) vs Engine Displacement (L)
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy))
Highway Miles per Gallon (Hwy) vs Number of Cylinders (cyl)
ggplot(data = mpg) +
geom_point(mapping = aes(x = cyl, y = hwy))