-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
reprs no longer return anything in the notebook #16168
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
Comments
Hum, I don't know. That's an interesting question. I'm unsure if there is a way to have a |
I can raise an issue on the Jupyter side (IPython repo probably?) if necessary. |
Sure, that would be great ! |
Since The default is |
Yeah I definitely didn't intend for us to break previous workflows. The monkey patching seems ok for now. It's too bad we don't have ipython/ipython#10090. |
Closed by ipython/ipython#10491 |
In #14904 I added an
NDFrame._ipython_display_
, which handles publishing what the user has configured (html, table schema, latex, text).An unintended consequence of that, is that our DataFrame and Series reprs invoked by the notebook no longer return anything, so there's no
Out[x]
and nothing is stored in theOut
dictionary. Here's a comparison notebook.cc @rgbkrk
For the jupyter folks (maybe @Carreau if you have time), is there any way around this? Does using
_ipython_display_
mean you can't have a "real output" from a cell?The text was updated successfully, but these errors were encountered: