We are reading data from MongoDB Collection. Collection column has two different values (e.g.: (bson.Int64,int) (int,float) ).
Collection
(bson.Int64,int) (int,float)
I a
Your question is broad, thus my answer will also be broad.
To get the data types of your DataFrame columns, you can use dtypes i.e :
DataFrame
dtypes
>>> df.dtypes [('age', 'int'), ('name', 'string')]
This means your column age is of type int and name is of type string.
age
int
name
string