1 The Samples

The data contains 100 samples of diameter measurements.

##   Diameter
## 1   10.261
## 2   10.031
## 3   10.203
## 4   10.245
## 5   10.389
## 6    9.803

1.1 Logarithms

The first few logarithms of the data are:

##   Diameter
## 1 2.328350
## 2 2.305680
## 3 2.322682
## 4 2.326790
## 5 2.340748
## 6 2.282688

2 Complete R Code

dat5 <- read.csv("https://raw.githubusercontent.com/tmatis12/datafiles/main/diameter.csv")
head(dat5)

head(log(dat5))