Reconstruct Data from Scores using a Composed Projector
reconstruct.composed_projector.RdMaps scores from the final latent space back towards the original input space using the composed projector's combined inverse projection. Requires scores to be provided explicitly.
Usage
# S3 method for class 'composed_projector'
reconstruct(x, scores, comp = NULL, rowind = NULL, colind = NULL, ...)Arguments
- x
A
composed_projectorobject.- scores
A numeric matrix of scores (observations x components) in the final latent space of the composed projector.
- comp
Numeric vector of component indices (columns of
scores, rows ofinverse_projection) to use for reconstruction. Defaults to all components.- rowind
Numeric vector of row indices (observations in
scores) to reconstruct. Defaults to all rows.- colind
Numeric vector of original variable indices (columns of the final reconstructed matrix) to return. Defaults to all original variables.
- ...
Additional arguments (currently unused).