0
What what is the type of a row of a DataFrame in python?
I have learned that a column in DataFrame is a Series. But what type is a row in a DataFrame? Thanks!
1 Resposta
+ 2
print(df_name['row_name'].dtype])
I have learned that a column in DataFrame is a Series. But what type is a row in a DataFrame? Thanks!