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()
是因为问题的版本吗?
答案 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
- > xlabel
,ylable
- > ylabel
,lablesize
- > labelsize
,拼写label
权利。