Session Ready
Exercise

Exercise 1. Exploring the Galton Dataset - Average and Median

For this chapter, we will use height data collected by Francis Galton for his genetics studies. Here we just use height of the children in the dataset:

library(HistData)
data(Galton)
x <- Galton$child
Instructions
100 XP

Compute the average and median of these data. Note: do not assign them to a variable.