- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Boxplot with variable length data in Matplotlib
To make a boxplot with variable length data in Matplotlib, we can take the following steps −
- Set the figure size and adjust the padding between and around the subplots.
- Make a list of data points.
- Make a box and whisker plot using boxplot() method.
- To display the figure, use show() method.
Example
from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True data = [[2, 4, 1, 3], [0, 4, 3, 2], [0, 0, 1, 0]] plt.boxplot(data) plt.show()
Output
- Related Articles
- How to get boxplot data for Matplotlib boxplots?
- How to create a Boxplot with Matplotlib?
- How to create a boxplot with log of the variable in base R?
- Python Pandas - Draw a boxplot for each numeric variable in a DataFrame with Seaborn
- Rotate xtick labels in Seaborn boxplot using Matplotlib
- Python Pandas - Draw a vertical boxplot grouped by a categorical variable with Seaborn
- How to make a grouped boxplot graph in matplotlib?
- How to deal with NaN values while plotting a boxplot using Python Matplotlib?
- Adjust the width of box in boxplot in Python Matplotlib
- How to change the color of data points based on some variable in Matplotlib?
- Variable Length Argument in C
- Variable-length arguments in Python
- Set variable point size in Matplotlib
- Adding a legend to a Matplotlib boxplot with multiple plots on the same axis
- Demonstrating variable-length arguments in Java

Advertisements