Some summary statistics
Use dplyr
s group_by()
and summarize()
to compute summary statistics for both years.
Diese Übung ist Teil des Kurses
Communicating with Data in the Tidyverse
Anleitung zur Übung
- Have a look at the structure of the
ilo_data
set withstr()
. - After this, group the data by year using the
group_by()
function. - Then, calculate the mean of both variables
hourly_compensation
andworking_hours
using thesummarize()
function.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Examine the structure of ilo_data
___(ilo_data)
# Group and summarize the data
ilo_data %>%
group_by(___) %>%
___(mean_hourly_compensation = ___(___),
mean_working_hours = ___(___))