I want to load data from the local file .csv.
I wrote the cypher as follows,
LOAD CSV WITH HEADERS FROM url AS line With line CREATE (accident:Accident {identify:line.ID,zipcode:line.Zipcode,humidity:TOFLOAT(line.Humidity)})
But the Humidity column i...