Matplotlib作图-快速查阅

Python Matplotlib作图-快速查阅

文本内容格式控制

图中所有的数字、文本格式控制
plt.title("I love Curry", fontdict={'family':'Times New Roman','size':16})
plt.ylabel('I love Klay',fontdict={'family':'Times New Roman','size':16})
plt.yticks(fontproperties='Times New Roman',size = 14,rotation=90)
plt.tick_params(axis='x',colors='white')
# tick_params参数
# 参数axis 选择坐标轴,both/x/y
# 参数which的值为 'major''minor''both',分别代表设置主刻度线、副刻度线以及同时设置,默认值为'major'
# 参数direction的值为'in''out''inout',分别代表刻度线显示在绘图区内侧、外侧以及同时显示
# 参数labelsize用于设置刻度线标签的字体大小
# 参数bottom, top, left, right的值为布尔值,分别代表设置绘图区四个边框线上的的刻度线是否显示
# 参数labelbottom, labeltop, labelleft, labelright的值为布尔值,分别代表设置绘图区四个边框线上的刻度线标签是否显示
plt.legend(loc='upper left',prop={'family':'Times New Roman','size': 16})

# 在柱子上显示数字、文本
def autolabel(rects, data):
    for rect,datum in zip(rects,data):
        height = rect.get_height()
        plt.text(rect.get_x()+rect.get_width()/2.-0.15, height+0.01, '{:.3f}'.format(datum),fontproperties='Times New Roman',fontsize=14)
ax = plt.bar(location, data, width=barWidth, label='Type 1',color='skyblue')
#location represents locations of bar
#data represents heights of bars
#barWidth represents Width of bars
autolabel(ax,data) 

plt.show()

布局

plt.style.use('seaborn') #背景灰色
fig, ax = plt.subplots()
ax.grid(True, linestyle='-') #背景网格
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值