Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR adds PrettyTables rendering and resolves issue #36 ## Example ```julia julia> dt = DTable((a=[0,1,2,3,4,5,6,7,8,9], b=[0,1,2,3,4,5,6,7,8,9]), 10); julia> dt DTable with 1 partitions Tabletype: NamedTuple ┌───────┬───────┐ │ a │ b │ │ Int64 │ Int64 │ ├───────┼───────┤ │ 0 │ 0 │ │ 1 │ 1 │ │ 2 │ 2 │ │ 3 │ 3 │ │ 4 │ 4 │ │ 5 │ 5 │ │ 6 │ 6 │ │ 7 │ 7 │ │ 8 │ 8 │ │ 9 │ 9 │ └───────┴───────┘ julia> print(dt) DTable with 1 partitions Tabletype: NamedTuple ┌───────┬───────┐ │ a │ b │ │ Int64 │ Int64 │ ├───────┼───────┤ │ 0 │ 0 │ │ 1 │ 1 │ │ 2 │ 2 │ │ 3 │ 3 │ │ 4 │ 4 │ │ 5 │ 5 │ │ 6 │ 6 │ │ 7 │ 7 │ │ 8 │ 8 │ │ 9 │ 9 │ └───────┴───────┘ ``` --------- Co-authored-by: Julian Samaroo <[email protected]>
- Loading branch information