Learn R Programming

multivarious (version 0.3.1)

std_scores.svd: Calculate Standardized Scores for SVD results

Description

Computes standardized scores from an SVD result performed by svd_wrapper. These scores are scaled to have approximately unit variance, assuming the original data used for SVD was centered. They differ from the s component of the svd object, which contains scores scaled by singular values.

Usage

# S3 method for svd
std_scores(x, ...)

Value

A matrix of standardized scores (N x k) with columns having variance close to 1.

Arguments

x

An object of class svd, typically from svd_wrapper.

...

Extra arguments (ignored).