I have a DataFrame with about 25 columns, several of which hold data unsuitable for plotting. DataFrame.hist() throws errors on those. How can I specify that those columns sho
I imagine you could just:
df.drop(['bad col1', 'bad col2', 'bad col3', ...], axis=1).hist()