You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A handful of our plot routines don't allow the user to pass on additional arguments to the underlying plot call, making configuration and tweaking a little frustrating. I'll highlight some here in no particular order that I think we should allow. Basically it would boil down to allowing **kwargs in the method signature, and then sending those directly to ax.plot or ax.errorbar, depending on how the plot is drawn.
A handful of our plot routines don't allow the user to pass on additional arguments to the underlying plot call, making configuration and tweaking a little frustrating. I'll highlight some here in no particular order that I think we should allow. Basically it would boil down to allowing
**kwargs
in the method signature, and then sending those directly toax.plot
orax.errorbar
, depending on how the plot is drawn.serpent-tools/serpentTools/parsers/sensitivity.py
Lines 408 to 409 in ee88bf4
serpent-tools/serpentTools/parsers/results.py
Lines 852 to 857 in ee88bf4
The last line here should be
ax.plot
rather thanax.errorbar
tooserpent-tools/serpentTools/objects/containers.py
Lines 454 to 455 in ee88bf4
The text was updated successfully, but these errors were encountered: