I am using Ipython and pandas to create a Series of numbers.
temperature_series = filtered_df['Daily Change'].cumsum()
I am then doing:
plot = temperature_series .plot(marker ='o',\
linestyle ='-', \
color = 'red', \
title = 'Cumulative Change',\
figsize = (15,6))
and in Ipython I am getting a nice plot. I am trying to create a simple GUI using tkinter which will just open a window displaying the plot. How is this usually done pythonically? It doesn't need to necessarily use tkinter, I am using a windows 7 machine and I think it can also be done using tempfile-->save figure--->open figure.