当前位置:网站首页>置信区间的画法
置信区间的画法
2022-07-04 21:14:00 【小蜗笔记】
err_inter = result.conf_int()
#置信区间的中心
err_mean = (err_inter[1]+err_inter[0])/2
# 置信区间的长度
err_long = (err_inter[1]-err_inter[0])/2
#置信区间画图
import matplotlib.pyplot as plt
from scipy import stats
import numpy as np
plt.style.use('seaborn-whitegrid')
fig, ax = plt.subplots(figsize=(50, 20),dpi=60)
ax.spines['bottom'].set_linewidth('2.0')#设置边框线宽为2.0
ax.spines['bottom'].set_color('black')
ax.spines['top'].set_linewidth('2.0')#设置边框线宽为2.0
ax.spines['top'].set_color('black')
ax.spines['right'].set_linewidth('2.0')#设置边框线宽为2.0
ax.spines['right'].set_color('black')
ax.spines['left'].set_linewidth('2.0')#设置边框线宽为2.0
ax.spines['left'].set_color('black')
plt.xticks(fontsize = 50)
plt.yticks(fontsize = 50)
for i in range(1,len(err_inter)):
ax.errorbar(i-10,err_mean[i] , yerr=err_long[i],
fmt='.', markersize=10, capsize=15, color='black')
xticks = [-9,-8, -7, -6, -5, -4,-3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11]
xticklabes =['-9','-8','-7','-6','-5','-4','-3','-2','-1','0','1','2','3','4','5','6','7','8','9','10','11']
plt.xticks(xticks,xticklabes,size=50)
yticks = [-2,-1,0,1,2,3,4,5]
yticklabes =['-2','-1','0','1','2','3','4','5']
ax.plot([-9.5,11.5],[0,0], color='black',linestyle = '--',linewidth=2, markersize=12)
plt.xticks(xticks,xticklabes,size=50)
ax.set_ylim(-2.5, 5.5)
ax.set_xlim(-9.5, 11.5)
#ax.fill_betweenx([1, 0], facecolor='lightgrey', alpha=0.3)
#ax.legend(loc='best', fontsize=11, framealpha=1, frameon=True)
#ax.set_xticklabels()
#ax.set_ticklabels()
#ax.set_yticklabels(labels=labels)
ax.set_xlabel('time', fontsize=50)
ax.set_ylabel('coefficient', fontsize=50)
#ax.yaxis.set_major_formatter(plt.NullFormatter())
#fig.tight_layout();
#plt.show()
#plt.savefig(r'C:\Users\sc35131\Desktop\wangyao\Cell_consistence_alogrithm\picture9\\'+'1234',bbox_inches = 'tight',pad_inches = 0,dpi =350)
plt.savefig('平行趋势检验.png')
边栏推荐
- 改善机器视觉系统的方法
- Daily question -leetcode1200- minimum absolute difference - array - sort
- How to implement Devops with automatic tools
- 解析互联网时代的创客教育技术
- Redis transaction
- OMS系统实战的三两事
- Difference between ApplicationContext and beanfactory (MS)
- [early knowledge of activities] list of recent activities of livevideostack
- [C language] deep understanding of symbols
- 解析steam教育中蕴含的众创空间
猜你喜欢
![Compréhension approfondie du symbole [langue C]](/img/4b/26cf10baa29eeff08101dcbbb673a2.png)
Compréhension approfondie du symbole [langue C]

A quick start to fastdfs takes you three minutes to upload and download files to the ECS

ArcGIS 10.2.2 | solution to the failure of ArcGIS license server to start

Enlightenment of maker thinking in Higher Education

MP3是如何诞生的?

每日一题-LeetCode1200-最小绝对差-数组-排序

QT—双缓冲绘图

CAD中能显示打印不显示

迈动互联中标北京人寿保险

如何使用ConcurrentLinkedQueue做一个缓存队列
随机推荐
Caduceus从未停止创新,去中心化边缘渲染技术让元宇宙不再遥远
Open3D 曲面法向量计算
Stealing others' vulnerability reports and selling them into sidelines, and the vulnerability reward platform gives rise to "insiders"
案例分享|金融业数据运营运维一体化建设
Liu Jincheng won the 2022 China e-commerce industry innovation Figure Award
Go语言循环语句(第10课中3)
redis RDB AOF
LambdaQueryWrapper用法
Analyzing the maker space contained in steam Education
gtest从一无所知到熟练运用(1)gtest安装
解析steam教育中蕴含的众创空间
Redis 排查大 key 的3种方法,优化必备
Case sharing | integrated construction of data operation and maintenance in the financial industry
旋变串判断
股票开户流程是什么?使用同花顺手机炒股软件安全吗?
Delphi SOAP WebService 服务器端多个 SoapDataModule 实现相同的接口方法,接口继承
GTEST from ignorance to proficiency (4) how to write unit tests with GTEST
redis事务
How is the entered query SQL statement executed?
Kubedm initialization error: [error cri]: container runtime is not running