Answers for "find number of columns which contain integer data python"

5

pandas dataframe get number of columns

import pandas as pd
df = pd.DataFrame({"pear": [1,2,3], "apple": [2,3,4], "orange": [3,4,5]})

len(df.columns)
3
Posted by: Guest on August-23-2020
0

how to get column names having numeric value in pandas

cols = df.select_dtypes([np.number]).columns
Posted by: Guest on November-28-2020

Code answers related to "find number of columns which contain integer data python"

Python Answers by Framework

Browse Popular Code Answers by Language