Hourly pay vs. citizenship status
Using the acs12
data, and specifically the variables income
, hrs_work
, and citizen
, summarize, visualize, and compare the distributions of hourly pay rate for citizens and non-citizens.
Este ejercicio forma parte del curso
Inference for Numerical Data in R
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Filter for non-missing hrly_pay and non-missing citizen
acs12_complete_hrlypay_citizen <- acs12 %>%
___