Skip to content

Commit

Permalink
Fix yearly plots
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenklar committed Dec 6, 2023
1 parent f581cdd commit 27de6a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isimip_qa/plots/yearly.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def create(self):
ax.step(sp.df.index, sp.df[sp.var], where='mid', label=sp.label,
color=sp.color, linestyle=sp.linestyle, zorder=sp.zorder)
ax.fill_between(sp.df.index, sp.df[sp.var] - sp.df['std'], sp.df[sp.var] + sp.df['std'],
step='mid', alpha=0.3)
step='mid', alpha=0.3, color=sp.color)

if sp.label:
ax.legend(loc='best').set_zorder(20)
Expand Down

0 comments on commit 27de6a8

Please sign in to comment.