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
Hello,
I'm trying to export a high resolution plot from the sample.clone_vs_analyte function, but it seems that the plot is "NoneType" and has no attribute "save".
Is there a way to export this image as high resolution TIFF and/or as PDF? I already tried to open the plot in a new webpage and print it as PDF, but the quality is not the best.
Thanks!
The text was updated successfully, but these errors were encountered:
As of now, the clone_vs_analyte plot is created using matplotlib. It can be saved as follows:
import matplotlib.pyplot as plt
sample.clone_vs_analyte("protein")
fig = plt.gcf() # GetCurrentFigure
fig.savefig("name.pdf", bbox_inches="tight") # .png, .jpg, .svg are allowed, but .tiff is not
Hello,
I'm trying to export a high resolution plot from the sample.clone_vs_analyte function, but it seems that the plot is "NoneType" and has no attribute "save".
Is there a way to export this image as high resolution TIFF and/or as PDF? I already tried to open the plot in a new webpage and print it as PDF, but the quality is not the best.
Thanks!
The text was updated successfully, but these errors were encountered: