Pregunta:
What is the difference between a histogram and bar chart?
Autor: Zhasmina Yanislavova TachevaRespuesta:
Histograms are used for continuous variables; bar graphs are used for discrete/categorical variables. ggplot(data = mtcars,aes(x=mpg))+geom_histogram() ggplot(data = mtcars,aes(x=gear))+geom_bar()
0 / 5 (0 calificaciones)
1 answer(s) in total