I have the following vectors
y_minimum <- c(2.5, 3.6, 2.5, 2.4, 3, 3.1, 3.8)
y_maximum <- c(12.5, 13.6, 12.5, 12.4, 13, 13.1, 13.8)
x <- c(2,3,4,5,6,7)
I want to plot y_minimum, y_maximum with the points connected by lines on the same graph for corresponding x values and shade from y_minimum to y_maximum range using ggplot2 feature in R. Please help. Thanks.