results_table is a pd.DataFrame
When I
print(type(results_table.loc[0,'Mean recall score']))
it return
<class 'numpy.float64'>
Every items is float
But when I
print(results_table['Mean recall score'].dtype)
it returns
object
Why is there such behavior?