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
In [1]: dfOut[5]:
<class'pandas.core.frame.DataFrame'>Int64Index: 2entries, 0to1Datacolumns (total2columns):
02non-nullfloat6412non-nullfloat64dtypes: float64(2)
I think the <class ... > is being interpreted as an HTML tag. We'll need to escape it. Our test checks whether <class> is in the repr, which it is, it's just not visible.
The text was updated successfully, but these errors were encountered:
This is only for the info repr. It's not a problem with
df.info()
.http://nbviewer.ipython.org/gist/TomAugspurger/4c83a646ffb93d5ee978
From a console attached to the same session:
I think the
<class ... >
is being interpreted as an HTML tag. We'll need to escape it. Our test checks whether<class>
is in the repr, which it is, it's just not visible.The text was updated successfully, but these errors were encountered: