
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 fill color below a curve in Matplotlib?
To fill color below a curve, we can take the following steps −
Steps
Initialize variable n. Initialize x and y data points using numpy.
Create a figure and a set of subplots, fig and ax.
Plot the curve using plot() method.
Use fill_between() method to fill the area between the two curves, with -1 value.
To display the figure, use show() method.
Example
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True n = 256 X = np.linspace(-np.pi, np.pi, n, endpoint=True) Y = np.sin(2 * X) fig, ax = plt.subplots() ax.plot(X, Y, color='blue', alpha=1.00) ax.fill_between(X, Y, 0, color='blue', alpha=.1) plt.show()
Output
- Related Questions & Answers
- How to fill rainbow color under a curve in Python Matplotlib?
- How to fill color above the curve in Matplotlib Program?
- How to fill the area under a step curve using pyplot? (Matplotlib)
- Fill the area under a curve in Matplotlib python on log scale
- How to animate a sine curve in Matplotlib?
- How to add a cursor to a curve in Matplotlib?
- How to fill the area under a curve in a Seaborn distribution plot?
- How to curve text in a polar plot in matplotlib?
- How to remove a specific line or curve in Matplotlib?
- How to change the curve using radiobuttons in Matplotlib?
- How to fill a polygon with a custom hatch in Matplotlib?
- Draw a parametrized curve using pyplot.plot() in Matplotlib
- How to draw a precision-recall curve with interpolation in Python Matplotlib?
- How to plot a gradient color line in matplotlib?
- Make logically shading region for a curve in matplotlib
Advertisements