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

[SOLEILTOOLS] Changement apparence plot MeanStdMaxMin

* L'aire du std est plus transparente
* les courbes max min moins transparente
parent 09d6bcef
No related branches found
No related tags found
No related merge requests found
...@@ -263,9 +263,9 @@ def plot_meanstdmaxmin(ax, datax, datay, N, ...@@ -263,9 +263,9 @@ def plot_meanstdmaxmin(ax, datax, datay, N,
c=lines[0].get_color() c=lines[0].get_color()
# Add max, min and std area # 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, ymax, linestyle='-', color=mcol.to_rgba(c, 0.5))[0])
lines.append(ax.plot(xmean, ymin, linestyle='-', color=mcol.to_rgba(c, 0.4))[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.4))) lines.append(ax.fill_between(xmean, ymean-ystd, ymean+ystd, color=mcol.to_rgba(c, 0.1)))
return lines 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