-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
_repr_html_ returns None #9323
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
Can you share |
Oh, is this maybe an repr_html() == None
repr_html() != None
|
Can you verify that you're using running the same version of Spyder in both environments? I have two other things you can try that might give us a hint: what do you get from running |
xref #7372 I also saw that Spyder now shows the text repr and no longer the html repr (and I think this is a good idea, see the issue I linked -> can lead to strange effects. And the ipython devs are even removing the default html displaying from the qtconsole in ipython 3.0, as I understand). |
They are running different versions of Spyder and ###repr_html() == None
###repr_html() != None
I'd say this was closed. I couldn't find anything in the release notes for Spyder about this. I've suggest adding something. Thank you for your help. |
So to summarize: pandas has a @ccordoba12 Maybe you can add this to your changelog? |
@jorisvandenbossche @lbillingham I didn't think this was important enough to merit a changelog note :-) I'll add one for our next release because I doubt people read old changelogs. In a way this was not our fault. The problem was I hope you fix this behavior :-) |
In previous versions, the Spyder IDE displayed HTML for DataFrames in its iPython console. In 0.15.2 they are no longer displayed.
I think this may be to do with
DataFrame._repr_html_()
If I run the following on 0.15.2:
it prints
0.15.2, True
and viewing the

DataFrame
withdf
results in the text rendering:On 0.14.1, running the above I get

0.14.1, False
and
df
results in this:The text was updated successfully, but these errors were encountered: