In the terminal of vscode I cannot see any longer the content of any dataframe.
I doesn’t make a difference if I start julia in the terminal or the “Julia REPL” plugin.
Example:
julia> using DataFrames;
df1 = DataFrame(a = repeat([1, 2, 3, 4], outer=[2]),
b = repeat([2, 1], outer=[4]),
c = 1:8);
julia> df1
8×3 DataFrame
Expected output:
julia> df1
8×3 DataFrame
│ Row │ a │ b │ c │
│ │ Int64 │ Int64 │ Int64 │
├─────┼───────┼───────┼───────┤
│ 1 │ 1 │ 2 │ 1 │
│ 2 │ 2 │ 1 │ 2 │
│ 3 │ 3 │ 2 │ 3 │
│ 4 │ 4 │ 1 │ 4 │
│ 5 │ 1 │ 2 │ 5 │
│ 6 │ 2 │ 1 │ 6 │
│ 7 │ 3 │ 2 │ 7 │
│ 8 │ 4 │ 1 │ 8 │
Any Idea?