scrublet
scrublet copied to clipboard
Export scrublet plots to .png or .pdf files
Hi there, Is there any way that I can save the scrublet plots (scrub.plot_histogram() and scrub.plot_embedding()) to png or pdf file? Thanks! Best Dié
Hi,
Obviously this is quite an old question, but in case this helps someone:
import matplotlib.pyplot as plt
scrub.plot_histogram()
plt.savefig("scrublet_output_plot.pdf")
Thanks, George