Q. How do you create a scatter plot in R for two numeric variables x and y?
β
Correct Answer: (C)
geom_point(mapping = aes(x = x, y = y))
You must be Logged in to update hint/solution