Nothing
# assuming that all lvs are reflective (i.e., using mode A)
estimatePLS_Step3 <- function(model) {
lvs <- model$info$lvs.linear
indsLvs <- model$info$indsLvs
lambda <- model$matrices$lambda
S <- model$matrices$S
SC <- model$matrices$SC
modes <- model$info$modes
for (lv in lvs) {
mode.lv <- modes[[lv]]
inds <- indsLvs[[lv]]
indsLv <- indsLvs[[lv]]
# Get un-normalized weights
wj <- switch(mode.lv,
A = getWeightsModeA(lv = lv, lambda = lambda, SC = SC, inds = inds),
B = getWeightsModeB(lv = lv, lambda = lambda, SC = SC, inds = inds),
NA_real_
)
# Normalize
Sjj <- SC[inds, inds]
wj <- wj / c(sqrt(t(wj) %*% Sjj %*% wj))
lambda[inds, lv] <- wj
}
model$matrices$lambda <- lambda
model
}
getWeightsModeA <- function(lv, lambda, SC, inds) {
as.vector(SC[inds, lv])
}
getWeightsModeB <- function(lv, lambda, SC, inds) {
getPathCoefs(y = lv, X = inds, C = SC)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.