Answers for "make dataframe with specific numbr of columns and rows"

2

python dataframe get numeric columns

dfnew = df.select_dtypes(include=np.number)
Posted by: Guest on November-19-2020
0

pandas make dataframe from few colums

new = old[['A','C','D']]
Posted by: Guest on October-21-2021

Code answers related to "make dataframe with specific numbr of columns and rows"

Python Answers by Framework

Browse Popular Code Answers by Language