Exploring a target variable
You have been asked to build a machine learning model to predict whether or not a person makes over $50,000 in a year. To understand the target variable, Above/Below 50k
, you decide to explore the variable in more detail.
The Python package pandas
will be used throughout this course and will be loaded as pd
throughout. The adult census income dataset, adult
, has also been preloaded for you.
This exercise is part of the course
Working with Categorical Data in Python
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Explore the Above/Below 50k variable
print(adult[____].____)