Question:
What are scatterplots useful for and how can you create one in R?
Author: Zhasmina Yanislavova TachevaAnswer:
Method 1, using base graphs: plot(airquality$Ozone, airquality$Wind) Method 2, using ggplot2: ggplot(airquality, aes(x=Ozone, y=Wind)) + geom_point()
0 / 5 Â (0 ratings)
1 answer(s) in total