If anyone could help me with the below encoding problem I'd really appreciate it. I cannot read my csv file in Jupyter notebook using the below Python code.
import pandas as pd
pd.read_csv(my_csv, index_col = 0)
Error I'm getting:
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
I'm getting similar problems when I import the file to PostgreSQL and try to use SQL to select columns so maybe it's something to do with the csv file itself.