CommencerCommencer gratuitement

Estimating quantiles

In addition to the mean, we may also be interested in a quantile such as the 50th quantile (i.e. the median). Recall that the 50th quantile is the value of the variable which is greater than 50 percent of the data. By exploring the quantiles of the data, we can get a better sense of how sleep hours is distributed across Americans. While the median tells us about the middle of our population, we might want to also know how much sleep the bottom 1% (1st quantile) or the top 1% (99th quantile) typically get.

Cet exercice fait partie du cours

Analyzing Survey Data in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Compute the survey-weighted quantiles
svyquantile(x = ___, 
            design = NHANES_design, 
            na.rm = TRUE, 
            quantiles = ___)
Modifier et exécuter le code