I am using DataLab to create several dataframes and subsequent figures. I would like to save these figures to either my computer hard drive or to my Google Cloud Storage.
Normally, I would do the following (I am going through a loop so df.name changes for each graph):
os.chdir('C:\\Documents\\Analysis\\')
ax_plot.figure.savefig(titles[df.name] + ".png",bbox_inches='tight')
Is there a way to do something similar within DataLab?
Thanks for the help!