Is it possible to draw a line chart with the standard deviation around the line shown as a colour density, so for example 1 stdev would be the same but a deeper colour that 2stdev?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re familiar with ggplot2, the
geom_smoothlayer can do what you’re looking for.See the second example on the page I linked. You would just need to either add multiple layers or a factor and use the
fillaesthetic to color them.