how to access a particular numeric column in pandas dataframe code example
Example 1: python dataframe get numeric columns
dfnew = df.select_dtypes(include=np.number)
Example 2: python dataframe get numeric columns
dfnew = df._get_numeric_data()