- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to visualize 95% confidence interval in Matplotlib?
To visualize 95% confidence interval in Matplotlib, we can take the following steps −
Set the figure size and adjust the padding between and around the subplots.
Create x and y data sets.
Get the confidence interval dataset.
Plot the x and y data points using plot() method.
Fill the area within the confidence interval range.
To display the figure, use show() method.
Example
from matplotlib import pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.arange(0, 10, 0.05) y = np.sin(x) # Define the confidence interval ci = 0.1 * np.std(y) / np.mean(y) plt.plot(x, y, color='black', lw=7) plt.fill_between(x, (y-ci), (y+ci), color='blue', alpha=0.5) plt.show()
Output
- Related Articles
- Plot 95% confidence interval errorbar Python Pandas dataframes in Matplotlib
- How to find 95% confidence interval for binomial data in R?
- How to find the 95% confidence interval for the glm model in R?
- How to find the 95% confidence interval for the slope of regression line in R?
- How to find bootstrap confidence interval in R?
- How to create a qqplot with confidence interval in R?
- How to find confidence interval for binomial distribution in R?
- How to create normal probability plot in R with confidence interval bands?
- How to visualize scalar 2D data with Matplotlib?
- How to find the confidence interval for the predictive value using regression model in R?
- How to plot the confidence interval of the regression model using ggplot2 with transparency in R?
- How to plot a time series array, with confidence intervals displayed in Python? (Matplotlib)
- How to build self-confidence?
- How to plot a line in Matplotlib with an interval at each data point?
- Change grid interval and specify tick labels in Matplotlib

Advertisements