我希望刻度出现在 ggplot2 的每个方面。以下代码生成的图形仅在最后一个方面插入比例。这可能很简单,但我似乎无法解决这个问题。下面是我的 R 代码。
ggplot(aes(x=month),data=tot.d.pred ) +
geom_line(aes(y=tot.diff.pred, colour="tot.diff.pred")) +
geom_point(aes(y=tot.diff.pred, colour="tot.diff.pred")) +
facet_wrap(~state_code, nrow=3) + ylab("diff_pred") + xlab("Month") +
scale_colour_manual("",breaks=c("tot.diff.pred"), values=c("red"))
提前谢谢了!