3
Как получить p-значения коэффициентов из регрессии начальной загрузки?
Из Quick-R Роберта Кабакова у меня есть # Bootstrap 95% CI for regression coefficients library(boot) # function to obtain regression weights bs <- function(formula, data, indices) { d <- data[indices,] # allows boot to select sample fit <- lm(formula, data=d) return(coef(fit)) } # bootstrapping with 1000 replications results <- boot(data=mtcars, …