ToothGrowth is an in-built R dataset, which contains the len…
ToothGrowth is an in-built R dataset, which contains the length of odontoblasts (cells responsible for tooth growth) in 60 guinea pigs. Each animal received either orange juice (coded as OJ) or ascorbic acid (a form of vitamin C and coded as VC). Use the following code to load the data and make a box plot.data(ToothGrowth) boxplot( len ~ supp, data = ToothGrowth)Which of the following statistics is NOT indicated in the box plot?