Q21
How do you create a kernel density plot in R for a numeric variable values?
A.
plot_kernel_density(values)
B.
geom_density(mapping = aes(x = values))
C.
density_plot(values, kernel = TRUE)
AnswerD.
kde(values)
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board