With pandas it is easy to plot a DataFrame:
df.plot()
This is much simpler than using matplotlib. However, with matplotlib one can save the plot to disk:
fig.savefig(path, format = format)
Is it possible to save a plot created by df.plot()
in a similar way?