I have a DataFrame df
of multiple columns and I would like to create a boxplot
for each column using matplotlib
.
df.info()
output of my DataFrame below for reference
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 9568 entries, 0 to 9567
Data columns (total 5 columns):
Ambient Tempreature 9568 non-null float64
Exhaust Vacuum 9568 non-null float64
Ambient Pressure 9568 non-null float64
Relative Humidity 9568 non-null float64
PE 9568 non-null float64
dtypes: float64(5)
memory usage: 373.8 KB
KeyError: "None of [Index(['Name'], dtype='object')] are in the [columns]"
. Any thoughts? – Nettles