October 2017
Intermediate to advanced
532 pages
16h 10m
English
>>> movie = pd.read_csv('data/movie.csv', index_col='movie_title')>>> movie.get_dtype_counts()float64 13
int64 3
object 11
dtype: int64
>>> movie.select_dtypes(include=['int']).head()

>>> movie.select_dtypes(include=['number']).head()
Read now
Unlock full access