Showing posts with label filter. Show all posts
Showing posts with label filter. Show all posts

Wednesday, November 14, 2018

Pandas - Select only numeric columns

df=df.select_dtypes(include=['float64'])

will return only the float values of the 'df' dataframe.