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
Besides saving the plots as png's in the /plots_nevt*/ directory, it would be good to also have the object itself saved. So one doesn't have to rerun for making small changes in the layout, and it is possible to show two differently trained pT bins in one canvas.
Pickle should work right? @ginnocen, what do you think?
importmatplotlib.pyplotaspltimportpickleasplfig_handle=pl.load(open('ROCcurve.pickle','rb'))
fig_handle.show()
#Get the data, for further operationsx=fig_handle.axes[0].lines[0].get_data()
The text was updated successfully, but these errors were encountered:
Besides saving the plots as png's in the /plots_nevt*/ directory, it would be good to also have the object itself saved. So one doesn't have to rerun for making small changes in the layout, and it is possible to show two differently trained pT bins in one canvas.
Pickle should work right? @ginnocen, what do you think?
Code will become something like this
And for offline use
The text was updated successfully, but these errors were encountered: