Hi, I’m using DataFrames with IJulia and when I create a DataFrame and then “show” it, instead of truncation like in Python it shows all columns non-truncated, which obviously hangs always. I’ve tried setting ENV[“COLUMNS”] but DataFrames is ignoring it.
I can always reproduce with
ENV["COLUMNS"] = 10
ENV
(Here I see the variable ENV shown truncated to 10 characters).
But subsequently
using DataFrames
x = repeat("ABC", 20000)
df = DataFrame(i=1:50, j=repeat(x, 50));
df
hangs for a second, then shows full 20k characters long lines.
What is the cause and fix? I am using classic Jupyter.