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 usually do the following:
columns = [column for column in df.columns if df[column].dtype == 'float64'] df = df[columns]