Q25
How do you create a faceted scatter plot in ggplot2 for two categorical variables facet1 and facet2?
A.
facet_grid(facet1 ~ facet2)
B.
geom_facet_scatter(facet1, facet2)
C.
facet_wrap(~facet1 + facet2)
AnswerD.
scatter_facet(facet1, facet2)
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board