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 Chapter 2 Selecting columns with methods, step 2 has the following movies.select_dtypes(include="int").head()
When run this will only show the index column.
To match the intent of the section and the output in the book, the code should be movies.select_dtypes(include="int64").head()
The text was updated successfully, but these errors were encountered:
In Chapter 2 Selecting columns with methods, step 2 has the following
movies.select_dtypes(include="int").head()
When run this will only show the index column.
To match the intent of the section and the output in the book, the code should be
movies.select_dtypes(include="int64").head()
The text was updated successfully, but these errors were encountered: