I'am trying to export as csv a pandas dataframe with the function:
outcome.to_csv("/Users/john/out_1.csv")
I get the following error:
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 191: ordinal not in range(128)
how do I go to position 191 to check what's wrong?
Many thanks