I can't save my figure to jpeg (or any other) file (it is blank)
x=list(df2['DAYTIME'])
z=list(df2['av100002 - temp Wywiew'])
x3= x[::75]
fig1 = plt.figure()
axes1 = fig1.add_axes([0,30,3.5,1.4])
axes1.set_title('Nawiew')
axes1.plot(x,z, lw=3)
axes1.set_xticks(x3)
plt.xticks(x3, rotation=60)
fig1.savefig('xx.png', dpi=200)