此代码生成一个图,但不显示标题和x标签。
normalDistribution = np.random.normal(loc = 0.0, scale = 1.0, size = totalPoints)
rows = 4
columns = 5
fig = plt.figure(figsize =(24, 24))
plt.subplots_adjust(wspace=0.3, hspace=0.4) # to adjust the spacing between subplots
plt.subplot(rows, columns,1)
plt.title = "Normal Dist"
plt.xlabel = "Sequence #"
plt.scatter(range(0, len(normalDistribution)), normalDistribution, c='green')
3条答案
按热度按时间vxbzzdmp1#
在代码末尾添加
plt.tight_layout()
http://omz-software.com/pythonista/matplotlib/users/tight_layout_guide.html
m0rkklqb2#
您可以保存图形,例如:
我不知道这是否可能,打印数字。
m2xkgtsf3#
使用
plt.title()
和plt.xlabel()
方法plt.title =
和plt.xlabel =
将覆盖您要使用的函数。