# data frame of Swiss fertility and socioeconomic indicators
class(swiss)
head(swiss)
# perform factor analysis
swiss_fa <- factanal(~ ., factors = 2L, data = swiss, scores = "regression")
# wrap as a 'tbl_ord' object
(swiss_fa <- as_tbl_ord(swiss_fa))
# recover loadings
get_rows(swiss_fa, elements = "active")
get_cols(swiss_fa)
# recover scores
head(get_rows(swiss_fa, elements = "score"))
# augment column loadings with uniquenesses
(swiss_fa <- augment_ord(swiss_fa))
# symmetric biplot
swiss_fa %>%
ggbiplot() +
theme_bw() +
geom_cols_vector(aes(color = uniqueness)) +
geom_cols_text_radiate(aes(label = name)) +
expand_limits(x = c(-2, 2.5), y = c(-1.5, 2))
Run the code above in your browser using DataLab