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
For large tables print_table truncates the printed table and puts ⋮ characters at the end of each column to indicate the truncation. There seems to be some magic going on behind the scenes as this truncation is based on the size of the terminal. However, when I set max_num_of_rows to a positive number, the truncation character ⋮ disappears.
Is it a way to both select the maximum size of the printed rows, and append the truncation character if there are more rows in the table?
The text was updated successfully, but these errors were encountered:
Awesome! I am in the middle of a full rewrite of PrettyTables.jl. I will introduce a lot of breaking changes, but also a lot of new features. The design will be much more simple to maintain (hopefully). In this case, you will be able to select how many rows or columns you want in text back end and the system will show the continuation line and columns.
For large tables
print_table
truncates the printed table and puts⋮
characters at the end of each column to indicate the truncation. There seems to be some magic going on behind the scenes as this truncation is based on the size of the terminal. However, when I setmax_num_of_rows
to a positive number, the truncation character⋮
disappears.Is it a way to both select the maximum size of the printed rows, and append the truncation character if there are more rows in the table?
The text was updated successfully, but these errors were encountered: