我使用ggplot创建了下面的图表:
ggplot(subset(monthly.rate, year=="2015"), aes(x=a6ncopo)) + geom_bar()
此处,每个时间点的观测数量(以及行数)将在每个时间点汇总。
我想制作相同的图表,但使用geom_line制作折线图。但当然我得到错误'需要以下缺少美学:y'。
如何让ggplot2使用y轴上的行数绘制折线图,就像使用geom_bar轻松处理一样?
Dput:
(removed)
答案 0 :(得分:0)
已在评论中答复
ggplot(subset(df, year=="2015"), aes(x=a6ncopo)) +
geom_bar() +
geom_line(stat="count")