开始使用免费开始使用

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.

本练习是课程的一部分

HR Analytics: Predicting Employee Churn in R

查看课程

练习说明

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

交互式实操练习

通过完成这段示例代码来试试这个练习。

# Load the readr and dplyr packages
___
___

# Import the org data
org <- ___

# Check the structure of org dataset, the dplyr way
___
编辑并运行代码