Aletheia
Aletheia copied to clipboard
How to save the plots and the related data ?
clf.pair_plot(... )
- Is there a way to save different plots that are generated from the functions?
- How to save data of the plots?
Shivam
Hi,
We provide a new version of aletheia under the name aletheia-dnn (v1.2). Each plot function will return a plt.figure object, and you can save it by, e.g., fig = clf.pair_plot(... ) fig.savefig("test.png")