我的数据框是 z:
library(ggplot2); library(scales)
z <- structure(list(Month = structure(c(14975, 15095, 15156, 15187,
15248), class = "Date"), Value = c(1, 1, 1, 6, 1)), .Names = c("Month",
"Value"), row.names = c(NA, 5L), class = "data.frame")
ggplot(z, aes(Month, Value)) +
geom_bar(fill="orange",size=.3, stat="identity", position="identity") +
geom_smooth(data=z,aes(Month,Value,group=1), method="lm", size=2, color="navyblue") +
scale_x_date(breaks = "1 month", labels=date_format("%b-%Y"))
这工作正常,但我真的很喜欢我的数据范围在 2011 年 1 月 1 日到 2013 年 1 月 1 日之间。我的示例日期是从 1/12011 到 10/1/2011。有没有一种简单的方法可以在 ggplot 中强制将日期范围从 2011 年 1 月 1 日到 2013 年 1 月 1 日?