get_svd_u | R Documentation |
Get left singular vectors in a tibble
get_svd_u(fa, factors = 1:fa$rank)
get_svd_v(fa, factors = 1:fa$rank)
get_varimax_z(fa, factors = 1:fa$rank)
get_varimax_y(fa, factors = 1:fa$rank)
fa |
A |
factors |
The specific columns to index into. The most reliable option here is to index with an integer vector of column indices, but you could also use a character vector if columns have been named. By default returns all factors/singular vectors. |
A tibble::tibble()
with one row for each node, and one column
containing each of the requested factor or singular vector, plus
an additional id
column.
get_svd_v()
: Get right singular vectors in a tibble
get_varimax_z()
: Get varimax Y factors in a tibble
get_varimax_y()
: Get varimax Z factors in a tibble
data(enron, package = "igraphdata")
fa <- vsp(enron, rank = 30)
fa
get_svd_u(fa)
get_svd_v(fa)
get_varimax_z(fa)
get_varimax_y(fa)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.