-
Notifications
You must be signed in to change notification settings - Fork 7
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
Support of pandas.Series #378
Conversation
7a61b10
to
ea45e19
Compare
ea45e19
to
af58d93
Compare
Fix docstring Co-authored-by: Auguste Baum <52001167+augustebaum@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we store a plotted representation of the series ? The markdow layout will be bad especially for large series.
Pandas offers this with a default matplotlib backend (which is supported by the frontend).
I often use the plot method of pandas, very convenient for one line code; otherwise using matplotlib or plotly to (re)plot a series is fine |
I think its hard to find a generic plot which can represent all sort of series, while remaining easy to understand. @rouk1 is there the same problem on list-primitive type? Keep in mind that, as for python list, the user can put whatever he wants in his series (str, number, str & number etc). |
It seems a good idea to me! |
Ok then we need to update how the frontend displays native object. |
Co-authored-by: Auguste Baum <52001167+augustebaum@users.noreply.github.com>
No description provided.