regress objectFor regression-based bi_projectors, reconstruction should map from the design matrix side (scores) to the output space using the regression coefficients, without applying any reverse preprocessing (which belongs to the input/basis side).
# S3 method for regress
reconstruct(
x,
comp = 1:ncol(x$coefficients),
rowind = 1:nrow(scores(x)),
colind = 1:nrow(x$coefficients),
...
)A regress object produced by regress().
Integer vector of component indices (columns of the design matrix / predictors) to use.
Integer vector of row indices in the design matrix (observations) to reconstruct.
Integer vector of output indices (columns of Y) to reconstruct.
Ignored.