How to Draw a Box Plot
In this lesson, we will learn how to display data quartiles by using a box plot.
We'll cover the following...
What is boxplot?
A boxplot is a standardized way of displaying a dataset based on a five-number summary: the minimum, the maximum, the sample median, and the first and third quartiles. In statistics, the boxplot is a method for graphically depicting groups of numerical data through their quartiles.
In Matplotlib, boxplot() is the core function to create box plot. Below are some of the important parameters of the function:
x: Array or a sequence of vectors. The input data.vert
Ask