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.
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?