НачатьНачать бесплатно

Looking at the recruiting data

Real HR datasets are tough to find because of privacy and ethical concerns about sharing sensitive employee data. The dataset you'll be using throughout this course is a synthetic one produced by IBM, and modified for learning purposes.

In this chapter, you'll be focusing on the sales department and the recruiting channels they were hired from.

Это упражнение является частью курса

HR Analytics: Exploring Employee Data in R

Посмотреть курс

Инструкции к упражнению

  • Load the readr package so you can use read_csv().
  • Look at the first rows of recruitment with head().

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

# Load the readr package
___

# Import the recruitment data
recruitment <- read_csv("recruitment_data.csv")

# Look at the first few rows of the dataset
___
Редактировать и запускать код