ComeçarComece de graça

Getting dummies

You will now transform the department variable, which you know is nominal based on the values you observed. To do that, you will use so-called dummy variables.

Este exercício faz parte do curso

HR Analytics: Predicting Employee Churn in Python

Ver curso

Instruções do exercício

  • get_dummies() out of the department column of the data and save them inside a new DataFrame called departments.
  • Take a quick look at the first 5 rows of the new DataFrame called departments.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Get dummies and save them inside a new DataFrame
departments = pd.____(____.department)

# Take a quick look to the first 5 rows of the new DataFrame called departments
print(____.____())
Editar e executar o código