I tried to use dataset=pandas.read_csv('filename')
to make a framework. But somehow I can't do it because one of the column headers is written in Hebrew.
I checked, and it is possible for a DataFrame to have a Hebrew word as column header.
dataset.columns = ['שלום', 'b','c','d','e']
but I want to import the data itself from the csv containing the Hebrew word, which I can't.
I get this error UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf9 in position 0: invalid start byte
.
How can I import a dataset to datadrame with the column header?