DataFrame.show() errors out on the client side when trying to show non ascii characters. No error from the server side.
Exception: 'ascii' codec can't encode character u'\xd1' in position 1385: ordinal not in range(128)
Same error running toPandas() and trying to write out to a file.
pandas/_libs/writers.pyx in pandas._libs.writers.write_csv_rows()
UnicodeEncodeError: 'ascii' codec can't encode character u'\xd1' in position 5: ordinal not in range(128)
DataFrame.show()
errors out on the client side when trying to show non ascii characters. No error from the server side.Same error running
toPandas()
and trying to write out to a file.