我想用ggplot绘制数值向量中值的频率。Withplot()
非常简单,但我无法使用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
我应该创建一个数据框ggplot()
来绘制我的矢量吗?