R Dataset / Package HistData / ChestSizes
On this R-data statistics page, you will find information about the ChestSizes data set which pertains to Chest measurements of 5738 Scottish Militiamen. The ChestSizes data set is found in the HistData R package. You can load the ChestSizes data set in R by issuing the following command at the console data("ChestSizes"). This will load the data into a variable called ChestSizes. If R says the ChestSizes data set is not found, you can try installing the package by issuing this command install.packages("HistData") and then attempt to reload the data with the library() command. If you need to download R, you can go to the R project website. You can download a CSV (comma separated values) version of the ChestSizes R data set. The size of this file is about 119 bytes.
Chest measurements of 5738 Scottish Militiamen
Description
Quetelet's data on chest measurements of 5738 Scottish Militiamen. Quetelet (1846) used this data as a demonstration of the normal distribution of physical characteristics.
Usage
data(ChestSizes)
Format
A data frame with 16 observations on the following 2 variables.
chest
-
Chest size (in inches)
count
-
Number of soldiers with this chest size
Source
Velleman, P. F. and Hoaglin, D. C. (1981). Applications, Basics, and Computing of Exploratory Data Analysis. Belmont. CA: Wadsworth. Retrieved from Statlib: https://www.stat.cmu.edu/StatDat/Datafiles/MilitiamenChests.html
References
A. Quetelet, Lettres a S.A.R. le Duc Regnant de Saxe-Cobourg et Gotha, sur la Theorie des Probabilites, Appliquee aux Sciences Morales et Politiques. Brussels: M. Hayes, 1846, p. 400.
Examples
data(ChestSizes) ## maybe str(ChestSizes) ; plot(ChestSizes) ...# frequency polygon plot(ChestSizes, type='b') #barplot barplot(ChestSizes[,2], ylab="Frequency", xlab="Chest size")
Dataset imported from https://www.r-project.org.