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
2 Likes
Related Questions
What is frequency polygon ? How do you create it ?
What is 5 point summary ?
Execute the following codes and find out what happens ? (Libraries have been imported already ; plt is the alias name for matplotlib.pyplot)
A = np.arange(2, 20, 2) B = np.log(A) plt.plot(A, B)Will this code produce error ? Why/Why not ?
Execute the following codes and find out what happens ? (Libraries have been imported already ; plt is the alias name for matplotlib.pyplot)
A = np.arange(2, 20, 2) B = np.log(A) plt.bar(A, B)Will this code produce error ? Why/Why not ?