This may not be specific to Pandas, but I am getting this error, for a small test file created in the C: drive. Tried searching on "unicode error", but this one seems to be different. What is wrong?
import pandas as pd
import matplotlib.pyplot as plt
df = pd.read_csv("C:\Users\arny\data.csv")
df.plot() # plots all columns against index
df.plot(kind='scatter',x='x',y='y') # scatter plot
df.plot(kind='density') # estimate density function
# df.plot(kind='hist') # histogram
File "", line 3 SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape