boot: Retrieve bootstrap coefficient matrix

bootR Documentation

Retrieve bootstrap coefficient matrix

Description

Retrieve bootstrap coefficient matrix

Usage

boot(object)

## S4 method for signature 'PlsModel'
boot(object)

## S4 method for signature 'PlsModel'
pls_boot(object)

Arguments

object

A fitted model object.

Value

A PlsSemMatrix of bootstrap replicate parameter vectors (rows = replicates, cols = parameters).

Examples

library(modsem)
library(plssem)

m <- "
  X =~ x1 + x2 + x3
  Z =~ z1 + z2 + z3
  Y =~ y1 + y2 + y3
  Y ~ X + Z + X:Z
"

fit <- pls(m, oneInt, bootstrap = TRUE, boot.R = 50)
boot(fit)


plssem documentation built on Sept. 26, 2026, 5:06 p.m.