शुरू करेंमुफ़्त में शुरू करें

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
___
कोड संपादित करें और चलाएँ