I am trying to read a .csv file that has a strange format.
This is what I am doing
df = spark.read.format('csv').option("header", "true").option("delimiter", ',').load("muyFile.csv"))
df.show(5)
I do not understand why the lonlat
entry of the third id is transposed. It seems that the file has two different delimiters. Your help would be much appreciated!