Skip to contents

sing() calculates the singular values of a given data matrix D. This is done with a call to svd(), and is included in pcpr to enable the quick characterization of a data matrix's raw low-rank structure, to help decide whether rrmc() or root_pcp() is the more appropriate PCP algorithm to employ in conjunction with D.

Experimentally, the rrmc() approach to PCP has best been able to handle those datasets that are governed by complex underlying patterns characterized by slowly decaying singular values, such as EH data. For observed data with a well-defined low rank structure (rapidly decaying singular values), root_pcp() may offer a better model estimate.

Usage

sing(D)

Arguments

D

The input data matrix (cannot have NA values).

Value

A numeric vector containing the singular values of D.

References

"Singular value decomposition" Wikipedia article.

See also

Examples

data <- sim_data()
sing(data$D)
#>  [1] 27.6008592  3.0491717  2.2919038  1.2200243  1.2007841  1.1485292
#>  [7]  1.1082292  1.0574525  0.9880939  0.9487314