If you feel that you need to look at the two samples using histograms, you can open R with the data set preloaded by right-clicking here and choosing "Save Target As" to download the file to your computer. Then find the downloaded file and double-click it to open it in R.
The data have been loaded into the data frame tv3
. The two variables in the data frame are time.men
and time.women
.
Create two histograms to view the men's and women's data by modifying the following commands to add appropriate labels/titles.
hist(tv3$time.men)
hist(tv3$time.women)