-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
HTML table for the view of Grouped Dataset/GatherBy Dataset in Jupyter Notebook #83
Comments
I'm checking this solution for some details. In order to modify the displayed summary message, I need to add some new show functions. Should I place them in |
It should be good to fix this issue. I think, one way to fix this issue is to modify |
I just thought of another problem. If we pass a permutation argument, we can judge that this is a However, how can we distinguish |
adding a keyword argument is one way, another one way can be modifying However, I think changing |
Hi, I'm trying to add some functions for I'm not sure how to implement Since the permutation will affect the max widths of the first N rows of a column, I can't just use something like |
Another question is, should we be able to access a Should we be able to modify its parent |
We should not define |
Hi,
I found there is no HTML table display for the view Grouped Dataset/GatherBy Dataset, which is generated by
groupby()
orgatherby()
. These views are still displayed in plain text, like:So I think it will be a good idea to add an HTML show function for
GroupBy
andGatherBy
. SinceGroupBy
andGatherBy
do not belong toAbstractDataset
, we cannot simply modify the show function ofAbstractDataset
, but its code could be reused.It will be easy to fix this issue by passing the
view(gds.parent, gds.perm, :)
into anAbstractDataset
show function's copy, whose summary message is modified. This is my improvement:And it also works well with large Dataset:
(omitted rows)
The text was updated successfully, but these errors were encountered: