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
We can potentially make this easier (I created a github issue), but for now you can select out the columns you want to plot:
df.ix[:, df.columns - to_exclude].hist()