meanTime25: A large population of mean running times prepared by...

Description Usage Format Author(s) Source

Description

A list of 100000 mean values of 25 running times resampled from the Cherry Blossom run created from data in the openintro package.

Usage

1

Format

A list with 100000 real values.

Author(s)

John Minter

Source

Created from the openintro data with the following code: library(openintro) data(run10Samp) df <- data.frame(time=run10Samp$time) sampleSize <- 100000 meanTime25 <- c() i <- 1 while(i<= sampleSize) sel <- df[sample(nrow(df), 25), ] mu <- mean(sel) meanTime25 <-c(meanTime25,mu) i=i+1 print(summary(meanTime25)) save(meanTime25, file="./meanTime25.rda")


jrminter/statshelpR documentation built on May 2, 2020, 12:08 a.m.