Back
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 should be excluded from the plotting?
Select out the columns you want to plot:
df.ix[:, df.columns - to_exclude].hist()
31k questions
32.8k answers
501 comments
693 users