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
The second table doesn't respect the 80 characters limit.
I've seen some of the discussion behind splitting big dataframes into several tables, but perhaps the current show behavior would be more appropriate for showall?
The text was updated successfully, but these errors were encountered:
Thanks to @bkamins it's better on master, though there's still the same visual glitch with the header:
julia>DataFrame(name=["Tom", "Eric", "Adolph Blaine Charles David Earl Frederick Gerald Hubert Irvin John Kenneth Lloyd Martin Nero Oliver Paul Quincy Randolph Sherman Thomas Uncas Victor William Xerxes Yancy Zeus"], age=[10, 20, 30])
3×2 DataFrames.DataFrame. Omitted printing of 2 columns
│ Row │ ├─────┼
│ 1 │ │ 2 │ │ 3 │
showall can be used to print everything, but it's not pretty. It would certainly make sense to truncate columns at a given proportion of the display size, like Pandas.
On a regular 80-column-wide terminal, printing a dataframe with a wide column yields this:
For comparison, pandas:
Issues:
show
behavior would be more appropriate forshowall
?The text was updated successfully, but these errors were encountered: