Shade background of ggplot according to month – Photoshop
This code: df <- data.frame(day <- 0:365, value = 1) library(ggplot2) ggplot(df, aes(day, value)) + geom_blank() + scale_x_continuous(breaks = seq(0, 365, 10)) + theme_bw() Produces this plot: Using R code, I want to shade the background of the plot according…