InterviewSolution
Saved Bookmarks
| 1. |
______ display a smooth density estimate.(a) geom_density2(b) geom_density(c) aes_sdensity(d) geom_contourI had been asked this question in exam.My question is taken from ggplot2 in chapter Profiling, Simulation and Data Analysis of R Programming |
|
Answer» RIGHT OPTION is (b) geom_density The explanation: geom_density display a smooth DENSITY estimate. A smooth density estimate CALCULATED by stat_density. |
|