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
When left unstyled, Pandas tries to print the dataframe directly into the cell values. We should have a custom rendering that changes this to be some simple representative value, like: <NestedFrame>. Optionally we could try to give this some more descriptive metadata, but I worry about the overhead of calculating such information if the user doesn't need it. e.g. <NestedFrame (length=350)>
The text was updated successfully, but these errors were encountered:
Note that one quirk of this is that my_style needs to know what columns to style manually, so we may need to trigger this in add_nested calls and reassert the styling.
We have control over the dataframe output within Pandas: https://pandas.pydata.org/docs/user_guide/style.html
When left unstyled, Pandas tries to print the dataframe directly into the cell values. We should have a custom rendering that changes this to be some simple representative value, like:
<NestedFrame>
. Optionally we could try to give this some more descriptive metadata, but I worry about the overhead of calculating such information if the user doesn't need it. e.g.<NestedFrame (length=350)>
The text was updated successfully, but these errors were encountered: