Q8
How do you create a scatter plot in R for two numeric variables x and y?
A.
scatter(x, y)
B.
plot(x, y)
C.
geom_point(mapping = aes(x = x, y = y))
AnswerD.
create_scatter(x, y)
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board