CommencerCommencer gratuitement

Importing headcount and turnover data

Since employee information is confidential, you will be working with data that was artificially generated (keeping the distribution as close as possible to real-world data) for learning purposes.

In this exercise, you will work with the org dataset which contains information for all employees who were working or who left the organization during the year 2014.

Cet exercice fait partie du cours

HR Analytics: Predicting Employee Churn in R

Afficher le cours

Instructions

  • Load the readr and dplyr packages.
  • Import 'org.csv' using read_csv().
  • Use glimpse() to view the structure of org.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Load the readr and dplyr packages
___
___

# Import the org data
org <- ___

# Check the structure of org dataset, the dplyr way
___
Modifier et exécuter le code