我正在尝试从 ggplot 中删除一系列 x 轴。我的数据 x 代表年和周:
202045:2020 年第 45 周
202053:2020 年的最后一周(任何一年都有 52-53 周,没有更多...)
summary(df$year_week)
分钟。第一曲。中位数平均第三曲。最大限度。202045 202047 202050 202054 202052 202101
可悲的是,我的数据从 2020 年的上周“跳跃”到 2021 年的第一周,并以“幽灵”周显示 x 轴,例如:
year_week=rep(c(202045,202046,202047,202048,202049,202050,202051,202052,202053,202101),times=1)
cases=rnorm(200, 44, 33)
df=data.frame(year_week, cases)
ggplot(df, aes(x=year_week, y=cases))+
geom_line()+
theme(axis.text.x = element_text(angle = 45,
hjust = 0.85, size=9))+
scale_x_continuous(limits=c(202045, 202101))
我试图用 NA 删除,但结果是一样的
df$year_week[df$year_week>202053 & df$year_week<202101]= NA
df$cases[df$year_week>202053 & df$year_week<202101]= NA
ggplot(na.omit(df), aes(x=year_week, y=cases))+
geom_line()+
theme(axis.text.x = element_text(angle = 45,
hjust = 0.85, size=9))+
scale_x_continuous(limits=c(202045, 202101))
df %>%
filter(!is.na(cases)) %>%
ggplot(aes(x=year_week, y=cases))+
geom_line()+
theme(axis.text.x = element_text(angle = 45,
hjust = 0.85, size=9))+
scale_x_continuous(limits=c(202045, 202101))
我的预期图表是:(任何一年都不存在第 60 周或第 80 周)