赞
踩
在数据可视化这一块,我掌握的还很粗浅,但是记录一下常用的一些命令,免得之后写的时候要到处去查找相关的命令,比较杂。
plt.xlim(650, 4000) or plt.ylim(650, 4000)
plt.scatter(t, posts, color='g', label='posts')
plt.plot(t, posts, linestyle='-', linewidth=2, color='g', marker= 's', label='posts')
plt.bar(t, posts, color='indianred', label='posts')
plt.xticks(rotation=270)
plt.rcParams['font.sans-serif'] = 'SimHei' #显示中文不乱码
plt.rcParams['axes.unicode_minus'] = False #显示负数不乱码<
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。