所以我用直方图绘制直方图 matplotlib.pyplot
plt.hist(var)
我很好奇我是否可以在创建的图表右侧附加一些统计信息
var.describe()
这是一个系列.
结果是这样的
用途figtext()
:
plt.hist(var) plt.figtext(1.0, 0.2, var.describe())
用于bbox_inches='tight'
将文本保存到图片中:
plt.savefig('fig1.png', bbox_inches='tight')