pca_var_cor {booklet}R Documentation

Compute variable correlation

Description

Return variable correlation

Usage

pca_var_cor(eigs)

Arguments

eigs

eigs computed by pca_eigen or pca_weighted_eigen

Value

A dataframe of variable correlation.

Examples

library(booklet)

iris[, -5] |>
  pca_standardize_norm() |>
  pca_weighted_eigen() |>
  pca_var_cor() |>
  head()

[Package booklet version 1.0.0 Index]