AttributeError:module' matplotlib.pyplot'没有属性' xlable'

时间:2017-06-06 03:40:06

标签: python matplotlib

import matplotlib.pyplot as plt

squares = [1,4,9,16,25]
plt.plot(squares,linewidth=5)

plt.title('Square Number',fontsize=24)
plt.xlable('Value',fontsize=14)
plt.ylable('Square of Value',fontsize=14)

plt.tick_params(axis='both',lablesize=14)
plt.show()

enter image description here

是因为问题的版本吗?

1 个答案:

答案 0 :(得分:5)

您可以尝试这样:

import matplotlib.pyplot as plt

squares = [1,4,9,16,25]
plt.plot(squares,linewidth=5)

plt.title('Square Number',fontsize=24)
plt.xlabel('Value',fontsize=14)
plt.ylabel('Square of Value',fontsize=14)

plt.tick_params(axis='both',labelsize=14)
plt.show()

你的问题是,xlable - > xlabelylable - > ylabellablesize - > labelsize,拼写label权利。