Jan-25-2021, 09:22 AM
I am reading from an excel sheet and plotting various results.
Using ctr esc has no effect
Can anyone help a beginner ?
#set plot
plt.plot(df[str('Temperature')], ls='-')
# set label
plt.xlabel('Hours since start')
plt.ylabel('temp')
plt.title('Temperature "C"')
#plt.legend('Legend')
mng = plt.get_current_fig_manager()
mng.full_screen_toggle()
plt.show()when the graph fills the screen as I want, I cannot see how to get back to normal size.Using ctr esc has no effect
Can anyone help a beginner ?
