Multiple line plot with standard deviation

Hi all,

I have simulated data on ecosystem services (deadwood volume, standing tree volume, and deciduous wood volume). I want to make a line plot of their standard deviation and projections into the future. I want it exactly like in the image below.

I am not very good with r code. I would appreciate your suggestion on how to write the appropriate code for the plot

A great place to start is this excellent tutorial on plotting in general.
3 Data visualisation | R for Data Science (had.co.nz)

The individual plots were produced using ggplot2:
Create Elegant Data Visualisations Using the Grammar of Graphics • ggplot2 (tidyverse.org)
The vertical lines use this type of geom:
Vertical intervals: lines, crossbars & errorbars — geom_crossbar • ggplot2 (tidyverse.org)

The plots are put together using one of these packages:
The Composer of Plots • patchwork (data-imaginist.com)
Streamlined Plot Theme and Plot Annotations for ggplot2 • cowplot (wilkelab.org)

Thanks for your response

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.