简单Matplotlib流程

简单Matplotlib流程,第1张

简单Matplotlib流程
import matplotlib.pyplot as plt

x = [1,2,3,4]
y = [5,6,7,8]
# 设置纸张大小
plt.figure(figsize=(4,3),facecolor=None) 
# 设置theme (seaborn)
sns.set_theme()
# subplot
# plt.subplot(111)
# 画图
plt.plot(x,y)
(也可以用seaborn画图)
# 处理边框
plt.gca().spines['top'].set_visible(False)
plt.gca().spines['right'].set_visible(False)
plt.gca().spines['bottom'].set_alpha(0.3)
plt.gca().spines['left'].set_alpha(0.3)
# 改变坐标轴范围
plt.xlim(1,10)
plt.ylim(1,10)
# 处理横纵坐标及标题
plt.gca().set_title('abc')
plt.gca().set_ylabel('y axis')
plt.gca().set_xlabel('x axis')
# 保存图片
plt.savefig('figure')

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/570488.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-09
下一篇 2022-04-09

发表评论

登录后才能评论

评论列表(0条)

保存