Q. How do you create a boxplot in ggplot2 for a numerical variable named value grouped by a factor variable group?
β
Correct Answer: (C)
geom_boxplot(mapping = aes(x = group, y = value))
You must be Logged in to update hint/solution