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')
I hope this will help you.