I want to plot with ggplot the frequency of values from a numeric vector. With plot() is quite straight forward but I can't get the same result with ggplot.
plot()
library(ggplot2) dice_results <- c(1,3,2,4,5,6,5,3,2,1,6,2,6,5,6,4) hist(dice_results)
ggplot(dice_results) + geom_bar() # Error: ggplot2 doesn't know how to deal with data of class numeric
Should I create a dataframe for ggplot() to plot my vector?
ggplot()
Try the code below
library(ggplot2) dice_results <- c(1,3,2,4,5,6,5,3,2,1,6,2,6,5,6,4,1,3,2,4,6,4,1,6,3,2,4,3,4,5,6,7,1) ggplot() + aes(dice_results)+ geom_histogram(binwidth=1, colour="black", fill="white")
1.4m articles
1.4m replys
5 comments
57.0k users