I have created a simple lineplot with Seaborn using this code:
sns.lineplot(data=data, x='year', y='Value', color='#128094', linewidth=1, estimator=lambda x: x.sum() / 12)
Which produced this:
How could I change the pattern of the Confidence Interval so I get a hatched pattern such as '\\\'?
CodePudding user response: