SEARCH
You are in browse mode. You must login to use MEMORY

   Log in to start


From course:

IST 387 Fall 2020

» Start this Course
(Practice similar questions for free)
Question:

What are scatterplots useful for and how can you create one in R?

Author: Zhasmina Yanislavova Tacheva



Answer:

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