我如何能够把不同年份的几个星期时间与轴心相协调,以便像6月份那样在同一月里发生的几周时间保持一致?
请注意,不同年份的同一周内没有收集数据,因此,几周内无法对数据进行统一,而且数据是假的。 我只想把不同年份同期发生的数周时间结合起来。 我只想比较不同年份内和不同时期的数据计时模式。
我的守则是:
p <- ggplot(df, aes(x = date_in, y = total_count, fill = Treatment)) +
geom_col() +
facet_grid(year ~ .) + # Stacking years on top of each other
theme_few(base_size = 10, base_family = "Arial") +
theme(axis.text.x = element_text(angle = 90, hjust = 1,
vjust = 0.5, color = "black"),
axis.text.y = element_text(vjust = 0.5, color = "black"),
axis.title = element_text(color = "black"),
strip.text = element_text(face = "bold", color = "black")) +
facet_wrap(~ year, ncol = 1, scales = "free",
strip.position = "right") + # Righty-axis
theme(legend.position = "top") +
scale_fill_manual(values = c("IP" = "blue", "LD" = "red")) # Set custom colors
# Print the plot
print(p)