轴已移动,可能是属性问题

时间:2019-05-30 16:38:56

标签: python matplotlib

我的图形移动了,并且没有覆盖整个区域。

from mpl_toolkits.mplot3d import axes3d
plt.rcParams['figure.figsize'] = (11,9)

fig = plt.figure()
ax = fig.add_subplot(111) #2D
#ax= fig.gca(projection='3d') #3D
ax.autoscale(enable=True, axis='both', tight=False)

cs = ax.contour(X1, X2_1, Z1, 30)
ax.clabel(cs, fontsize=10)


plt.plot(x1_tr, x2_tr, 'k+')

plt.show()

现在如何:enter image description here

当我移除plt.plot(x1_tr, x2_tr, 'k+')时,轮廓变得完美了!

0 个答案:

没有答案