Examples
Draw a box plot from a DataFrame with five columns of randomly generated data:

In [3]:
import numpy as np
import pandas as pd
In [5]:
data = np.random.randn(30, 5)
df = pd.DataFrame(data, columns=list('PQRST'))
ax = df.plot.box()