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
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?