This is my very first question on stackoverflow, so I must beg your patience.
I believe there is something wrong with the format of a csv file I need to load into Python. I'm using a Jupyter Notebook. The link to the file is here. It is from the World Inequality Database data portal.
I'm pretty sure the delimiter is a semi-colon ( sep=";"
) because the bottom half of the data renders neatly when I specify this argument. However the first half of the text in the file seems to make no sense. I have no idea how to tell the pd.read_csv()
function how to read it. I suspect the first half of the data simply has terrible formatting. I've also tried header=None
and sep="|"
to no avail.
Any ideas or suggestions would be very helpful. Thank you very much!