我正在尝试使用ggplot,在年份和代码之间有一个有吸引力的情节。
我的日期栏目看起来像1990-10-20; 2000-10-28 ..
我想在2000年之后全年策划。
以下是代码,我已经尝试过,任何人都可以帮助我在2000年之后寻找一年并绘制我的图表。
{{1}}
答案 0 :(得分:2)
library(lubridate)
count %>%
filter(year(Date) > 2000) %>%
ggplot(aes(Date, count))+
geom_bar(stat = "identity")
一段时间:
count %>% # BAD OBJECT NAME - RECITE 10 HAIL MARYS
filter(year(Date) >= 2012 & year(Date) <= 2014 <) %>%
ggplot(aes(Date, count))+
geom_bar(stat = "identity")
如果您的左侧和右侧限制为自己的日期,您还可以通过其他方式查看?lubridate::between
。