Skip to content
Snippets Groups Projects
Commit 2f6822e3 authored by BRONES Romain's avatar BRONES Romain
Browse files

Merge branch 'dev_SoleilTools' into minor

* Changement apparence plot MeanStdMaxMin
parents 9c308e34 f9ff7d92
No related branches found
No related tags found
No related merge requests found
......@@ -263,9 +263,9 @@ def plot_meanstdmaxmin(ax, datax, datay, N,
c=lines[0].get_color()
# Add max, min and std area
lines.append(ax.plot(xmean, ymax, linestyle='-', color=mcol.to_rgba(c, 0.4))[0])
lines.append(ax.plot(xmean, ymin, linestyle='-', color=mcol.to_rgba(c, 0.4))[0])
lines.append(ax.fill_between(xmean, ymean-ystd, ymean+ystd, color=mcol.to_rgba(c, 0.4)))
lines.append(ax.plot(xmean, ymax, linestyle='-', color=mcol.to_rgba(c, 0.5))[0])
lines.append(ax.plot(xmean, ymin, linestyle='-', color=mcol.to_rgba(c, 0.5))[0])
lines.append(ax.fill_between(xmean, ymean-ystd, ymean+ystd, color=mcol.to_rgba(c, 0.1)))
return lines
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment