I am reading a CSV file saved from an MS SQL query. When I read file using pandas, the last column has long string which is causing NaN values. I understand this could be from windows end of line returns and/or encoding issues.
I am a newbie and don't really understand if this is an encoding problem and how to change the read statement. When I use standard Python import csv
and save as utf-8 I don't have any issues re-opening and working with a txt file. Also don't find anything particularly helpful from this issue
Location = r'newpositive.csv'
df = pd.read_csv(Location)