ExtractSamps | R Documentation |
Extract samples of each parameter from the BKMR fit
ExtractSamps(fit, sel = NULL)
fit |
An object containing the results returned by a the |
sel |
logical expression indicating samples to keep; defaults to keeping the second half of all samples |
a list where each component contains the posterior samples of one of the parameters (or vector of parameters) being estimated
## First generate dataset set.seed(111) dat <- SimData(n = 50, M = 4) y <- dat$y Z <- dat$Z X <- dat$X ## Fit model with component-wise variable selection ## Using only 100 iterations to make example run quickly ## Typically should use a large number of iterations for inference set.seed(111) fitkm <- kmbayes(y = y, Z = Z, X = X, iter = 100, verbose = FALSE, varsel = TRUE) samps <- ExtractSamps(fitkm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.