R/model_constructors.R

Defines functions PlsModel

PlsModel <- function(matrices         = list(),
                     data             = matrix(),
                     info             = list(),
                     thresholdStruct  = ThresholdStruct(),
                     glsPathModel     = GlsPathModel(),
                     status           = list(),
                     params           = list(),
                     fit              = list(),
                     fitConsistent    = list(),
                     fitUncorrected   = list(),
                     fitLmer          = list(),
                     factorScores     = NULL,
                     parTableInput    = data.frame(),
                     higherOrderModel = NULL,
                     combinedModel    = NULL,
                     parTable         = NULL,
                     boot             = list()) {

  methods::new("PlsModel",
    matrices         = matrices,
    data             = data,
    info             = info,
    thresholdStruct  = thresholdStruct,
    glsPathModel     = glsPathModel,
    status           = status,
    params           = params,
    fit              = fit,
    fitConsistent    = fitConsistent,
    fitUncorrected   = fitUncorrected,
    fitLmer          = fitLmer,
    factorScores     = factorScores,
    parTableInput    = parTableInput,
    higherOrderModel = higherOrderModel,
    combinedModel    = combinedModel,
    parTable         = parTable,
    boot             = boot
  )
}

Try the plssem package in your browser

Any scripts or data that you put into this service are public.

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