You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/Users/germuska/.virtualenvs/data/lib/python2.6/site-packages/pandas/tools/plotting.pyc in _stringify(x)
1073 return '|'.join(str(y) for y in x)
1074 else:
-> 1075 return str(x)
1076
1077
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 1: ordinal not in range(128)
If labels can't be unicode, perhaps can a clearer error be thrown?
The text was updated successfully, but these errors were encountered:
Matplotlib supports unicode so we don't have to limit pandas plotting functions either I think.
Would you be interested in making a pull request on this? You can use the stringify functionality in pandas.core.common as a reference
/Users/germuska/.virtualenvs/data/lib/python2.6/site-packages/pandas/tools/plotting.pyc in _stringify(x)
1073 return '|'.join(str(y) for y in x)
1074 else:
-> 1075 return str(x)
1076
1077
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 1: ordinal not in range(128)
If labels can't be unicode, perhaps can a clearer error be thrown?
The text was updated successfully, but these errors were encountered: