| MPG | R Documentation |
Gasoline consumption (in miles per gallon in city driving) of cars by origin. There are 3 variables representing samples of sizes n1 = 58, n2 = 14 and n3 = 37.
data(MPG)
A data frame with 58 observations on the following 3 variables.
origin1Gasoline consumption, a numeric vector
origin2Gasoline consumption, a numeric vector
origin3Gasoline consumption, a numeric vector
See CAR
data(MPG)
library(boot)
set.seed(123)
B <- apply(MPG, MARGIN=2,
FUN=boot,
statistic=function(x, i){
var(x[i], na.rm = TRUE)
},
R = 500)
Bt0 <- sapply(B,
FUN=function(x) x$t0)
Bt <- sapply(B,
FUN=function(x) x$t)
Bf <- max(Bt0)/min(Bt0)
FBoot <- apply(Bt, MARGIN=1,
FUN=function(x){
max(x)/min(x)
})
Bf
quantile(FBoot, 0.95)
sum(FBoot >= Bf)/length(FBoot)
rm(Bt0, Bt, Bf, FBoot)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.