Data ingestion rejects datasets with mixed type columns. These columns should be converted to Float before sending. Below is an example of a mixed type column in Pandas an how to convert it.
1
import pandas as pd
2
​
3
# Example Series with mixed types
4
mixed = pd.Series([1,"",2])# it has numbers and strings