Informatics Practices

What is Boxplot ? How do you create it in Pyplot ?

PyPlot

1 Like

Answer

A boxplot is a visual representation of the statistical five number summary of a given data set, including the extremes (the highest and the lowest numbers), the median, the upper and lower quartiles.

With Pyplot, a boxplot is created using boxplot() function. The syntax is as follows : matplotlib.pyplot.boxplot(x, notch = None, vert = None, meanline = None, showmeans = None, showbox = None,).

Answered By

3 Likes


Related Questions