LoslegenKostenlos starten

The right person on the job I

Recruiting new employees is one of the most important processes in organizations. The dataset vacancies contains information on a sample of 1000 recruiting records of a large manufacturing company. Our impression is that it takes a long time to get vacancies filled. Let's use all the tools we have learned to gain some insight into this process.

Diese Übung ist Teil des Kurses

<Kurs>Business Process Analytics in R</Kurs>
Kurs ansehen

Übungsanweisungen

  • Calculate the throughput time distribution, giving the results in units of days.
  • Group the vacancies by vacancy_department and recalculate the throughput time in days. Plot the results.

Interaktive praktische Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Calculate throughput time in days
vacancies %>% 
  ___(___)

vacancies %>% 
  # Group by vacancy department
  ___(___) %>% 
  # Calculate throughput time in days
  ___(___) %>% 
  # Plot it
  ___()
Code bearbeiten und ausführen