News

# y axis represents the Sepal.Width. # Store it as an object named sepal_plot sepal_plot <- ggplot(iris, aes(x = Sepal.Length, Sepal.Width)) # Q1.2 - Add a geom ...
ggplot(data = mpg, aes(x = cty, y = hwy)) # this plot is empty because we haven't provided any geom's mpg ggplot(data = mpg, aes(x = cty, y = hwy), geom_point ...