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
Also, regarding display and print, we should definitely be using display for DataFrames. However, when running in Jupyter, there is no need to manually invoke the display function. When run as Jupyter cells, the following pieces of code are equivalent:
Explicit display:
df=pd.DataFrame(...)
...
display(df)
Implicit display:
df=pd.DataFrame(...)
...
df
Also, when running in Jupyter, there is no need to manually import display from IPython.display. The display function is auto-imported by Jupyter.
The text was updated successfully, but these errors were encountered: