本文主要用来记录自己近期踩坑的一些复盘。其中坑有:
解决方案中主要是:anaconda的卸载与安装,因此本文包括这部分内容。
为何要卸载anaconda与重新安装?
原因:这一切都要从调用import matplotlib.pyplot as plt中的’.supxlabel’ 不起作用说起。
具体过程:
1、运行下面的代码:
import numpy as np
import matplotlib.pyplot as plt
#准备数据
x=np.linspace(-np.pi,np.pi,100)
y=np.sin(x)
fig=plt.figure()
#画布设置
fig.suptitle("figtitle", x=0.5, y=0.98)
fig.supxlabel("figxlabel", x=0.5, y=0.02)
fig.supylabel("figylabel", x=0.02, y=0.5)
fig.subplots_adjust(wspace=0.5,hspace=0.5)
fig.tight_layout(pad=2)
ax1=fig.add_subplot(2,