I'm trying to load a CSV file but keep getting the following error
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa1 in position 0: invalid start byte
Here's my code:
import numpy as np
dataset = pd.read_csv('refined5.csv', error_bad_lines=False, skiprows=[0])
The file can be found here: jmp.sh/xKopnNi
I realize that this is a unicode conversion error I want python to load or skip this line so that the rest of the file will load.