I am trying to make the following changes to the ggplot below (partly illustrated in the picture provided):
- change shading legend to show economic cycle (shaded is a recession, no shade is an expansion)
- add additional legend to show economic variables (green is 'CLI' and red is 'Inflation Expectations")
The code so far looks like this:
A <- ggplot(Alldata, aes(Date)) + 
  geom_tile(aes(alpha = Recession, y = 1), 
            fill = "grey", height = Inf) +
  scale_alpha_continuous(range = c(0, 1), breaks = c(0, 1))+
  geom_line(aes(y = stdINFEX), col = 'blue', size = .8)+
  ylab('')+
  theme(        axis.text.y=element_blank(),  #remove y axis labels
        axis.ticks.y=element_blank()  #remove y axis ticks
  )
    
A
B <- A + geom_line(aes(y = CLI), col = 'green', size = .8) 
B

 
     
    
