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

Visualizing the sales performance differences

The last step in the HR analytics process is to test and plot the results. For now, you'll focus on visualizing the data from the previous exercises. You'll be making a bar chart so you can more easily see the average sales quota attainment for each recruiting channel.

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

HR Analytics: Exploring Employee Data in R

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

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

The summarized data, avg_sales, is available in your workspace.

  • Load the ggplot2 package (dplyr is already loaded).
  • Using ggplot(), plot a bar chart from the avg_sales data. Place the recruiting source on the x-axis and avg_sales_quota_pct on the y-axis.

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

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

# Load the ggplot2 package
___

# Plot the bar chart
___
Редактировать и запускать код