Hi Guys,
You can use the plot function in Pandas. It helps you to plot any kind of graph. I have attached one example below for your reference.
import pandas as pd
import numpy as np
df = pd.DataFrame(np.random.rand(10, 5), columns=['A', 'B', 'C', 'D', 'E'])
df.plot.box(grid='True')
![](https://www.edureka.co/community/?qa=blob&qa_blobid=10542278116904487524)
I hope this will help you.