1. Learn
  2. /
  3. Courses
  4. /
  5. Predicting CTR with Machine Learning in Python

Connected

Exercise

A first look

Using the full Avazu dataset, you will explore various new features by looking at the data types of columns. The new data includes categorical columns such as site_id, app_id, device_id, etc. all of which are various identifiers for a given site, app, and user respectively. To start off, you will identify and print out the numerical and categorical columns.

Sample data in DataFrame form is loaded as df. pandas as pd is also available in your workspace.

Instructions

100 XP
  • Print the columns of df using .columns.
  • Print the corresponding data types of df using .dtypes.
  • Select the subset of df with numerical columns (by using include = ['int', 'float']) and print those columns.
  • Select the subset of df with categorical columns (by using include = ['object']) and print those columns.