-
Notifications
You must be signed in to change notification settings - Fork 42
Closed
Description
It would be easier to read tables if they were aligned to decimal point by default. Currently the order of magnitude represented by each column is inconsistent so it's hard to read. Of course I can customize it for each table, but it seems like a good default to me.
Current:
julia> pretty_table([(;a=1.0),(;a=1.23)])
┌─────────┐
│ a │
│ Float64 │
├─────────┤
│ 1.0 │
│ 1.23 │
└─────────┘Proposed:
julia> pretty_table([(;a=1.0),(;a=1.23)])
┌─────────┐
│ a │
│ Float64 │
├─────────┤
│ 1.00 │
│ 1.23 │
└─────────┘Metadata
Metadata
Assignees
Labels
No labels