LoslegenKostenlos loslegen

Numerical summaries of age

Let's continue our exploratory data analysis of the numerical explanatory variable age by computing summary statistics. Summary statistics take many values and summarize them with a single value. Let's compute three such values using dplyr data wrangling: mean (AKA the average), the median (the middle value), and the standard deviation (a measure of spread/variation).

Diese Übung ist Teil des Kurses

Modeling with Data in the Tidyverse

Kurs anzeigen

Anleitung zur Übung

Calculate the mean, median, and standard deviation of age.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Load packages
library(moderndive)
library(dplyr)

# Compute summary stats
evals %>%
  ___(mean_age = ___(age),
            median_age = ___(age),
            sd_age = ___(age))
Code bearbeiten und ausführen