Box Plots

It is also the chart it is give different way to data representation.this graph is represent of minimum ,maximum and medium let’s take the demonstration

Program

#importing pandas library
import pandas as ps
#importing numpy library
import numpy as np
# taking random number behalf 5 column
abc = ps.DataFrame(np.random.rand(5, 5), columns=['A', 'B', 'C', 'D', 'E'])
abc.plot.box(grid='True')

Output

<matplotlib.axes._subplots.AxesSubplot at 0x7faa1a432710>

Subscribe Now