Die folgenden Transplantate stammen aus diesem Artikel . Ich bin ein Neuling im Bootstrap und versuche, das parametrische, semiparametrische und nichtparametrische Bootstrapping-Bootstrapping für ein lineares gemischtes Modell mit R boot
Paket zu implementieren.
R-Code
Hier ist mein R
Code:
library(SASmixed)
library(lme4)
library(boot)
fm1Cult <- lmer(drywt ~ Inoc + Cult + (1|Block) + (1|Cult), data=Cultivation)
fixef(fm1Cult)
boot.fn <- function(data, indices){
data <- data[indices, ]
mod <- lmer(drywt ~ Inoc + Cult + (1|Block) + (1|Cult), data=data)
fixef(mod)
}
set.seed(12345)
Out <- boot(data=Cultivation, statistic=boot.fn, R=99)
Out
Fragen
- Wie mache ich parametrisches, semiparametrisches und nichtparametrisches Bootstrapping für gemischte Modelle mit
boot
Paket? - Ich denke, ich mache nichtparametrisches Bootstrapping für gemischte Modelle in meinem Code.
Ich habe diese Folien gefunden , konnte aber das R-Paket nicht bekommen merBoot
. Irgendeine Idee, wo ich dieses Paket bekommen kann. Jede Hilfe wird sehr geschätzt. Vielen Dank im Voraus für Ihre Hilfe und Zeit.
R
.