Как создать и сохранить полноэкранный рисунок в вызове функции с помощью matplotlib?
import matplotlib.pyplot as plt
def SolutionCandidate():
# creating some figure
x = list(range(1, 8))
y = [xx*xx for xx in x]
fig = plt.figure('SolutionCandidate')
ax = plt.gca()
ax.plot(x,y)
#
# making the figure full-screen
mng = plt.get_current_fig_manager()
mng.resize(*mng.window.maxsize())
#
# saving the figure
#plt.show(block=False)
plt.savefig('temp.png')
SolutionCandidate()
Как убедиться, что после вызова функции SolutionCandidate()
сохранен полноэкранный рисунок?
Большое спасибо за помощь!