I'm trying to evaluate this dataset and keep getting an error saying that a column needs to be double, but when I check it it's a float, which should be the same thing in Python 3 (?)
import pandas as pd
df = pd.read_csv('./undefinedweatherAUS_processed.csv')
df.RainToday
0 1.0
1 1.0
2 1.0
3 1.0
4 1.0
...
120376 1.0
120377 1.0
120378 1.0
120379 1.0
120380 1.0
Name: RainToday, Length: 120381, dtype: float64
Am I missing something or is this a bug?
Update: I was accessing the data from the Cloud Object Storage, which returned that error, now I tried uploading a smaller version of the same dataset and it seemed to work. So the problem seems to be in the communication between COS and Openscale