分类:Matplotlib
示例代码如下:#!/usr/bin/python#-*-coding:utf-8-*-importmatplotlib.pyplotasplt#figsize-图像尺寸(figsize=(10,10))#facecolor-背景色(facecolor="blue")#dpi-分辨率(dpi=72)fig=plt.figure(figsize=(10,10),facecolor="blue")#figsize默认为4,4(图像尺寸)ax1=fig.add_subplot(1,1,1)#行列位置#ax2=fig.add_subplot(2,1,2)#ax=fig.add_subplot(1,1,1)ax1.set_title("title")#不支持中文#...
继续阅读 >
2020
10-10
2020
10-10
2020
10-10
2020
10-09
在matplotlib中,errorbar方法用于绘制带误差线的折线图,基本用法如下plt.errorbar(x=[1,2,3,4],y=[1,2,3,4],yerr=1)输出结果如下yerr参数用于指定y轴水平的误差,同时该方法也支持x轴水平的误差,对应参数xerr。指定误差值有多种方式,上述代码展示的是指定一个统一标量的用法,此时,所以的点误差值都一样。除此之外,还可以指定为一个和点的个数相同的数组,为每个点单独设置误差值,用法如下plt.errorbar(x=[1,2,3,...
继续阅读 >
2020
10-08
2020
10-08