TableView.jl icon indicating copy to clipboard operation
TableView.jl copied to clipboard

Output not displayed when (incorrectly parsed?) unicode characters in string

Open nilshg opened this issue 5 years ago • 0 comments

Just came across this slightly puzzling issue:

using TableView, DataFrames

showtable(DataFrame(a = 0.0, b = "t\xe9st"))

This produces an empty output table, showing only the column header row but no data.

This happened when I read in a CSV with French characters - StackOverflow tells me that \xe9 is é. If I replace the string with "tést", so it seems to be an issue with an incorrectly parsed unicode character.

Still, it seems to me that not displaying any output is a bug?

nilshg avatar Jul 08 '20 19:07 nilshg