CBSE Class 12 Informatics Practices Question 117 of 147

Plotting with Pyplot — Question 17

Back to all questions
17
Question

Question 17

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

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,).