We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As discussed at JuliaCon, it would be great to use PrettyTables to render the DTable via the show method.
DTable
show
The text was updated successfully, but these errors were encountered:
Add PrettyTables rendering (#45)
4fa5d5b
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]>
reverted #45 performance was weird and i was getting hangups locally
we need to reevaluate how to implement this correctly and possibly make it opt in instead of active by default
Sorry, something went wrong.
No branches or pull requests
As discussed at JuliaCon, it would be great to use PrettyTables to render the
DTable
via theshow
method.The text was updated successfully, but these errors were encountered: