d6tstack
d6tstack copied to clipboard
UnicodeDecodeError
Allow to set the encoding when writing the dataframe to csv, before loading infile. It gets an error when the csv contains unicode characters.
There is an option to add encoding as a parameter when saving csv. For example, you can have it as:
c.to_csv_combine('test-data/output/test.csv', write_params = {"encoding" : "utf-8"})
I hope this solves the issue.