Closed alexym1 closed 4 months ago
R : 4.3.2 FactoMineR2 : development version
get_eigen()
gained a new argument called weigths
allowing to return same results as FactoMineR
library(FactoMineR)
data("decathlon")
row.w <- rep(1, nrow(decathlon))
weights <- row.w / sum(row.w)
ex <- FactoMineR2::standardize(decathlon[,-c(11:13)], scale = FALSE)
head(FactoMineR2::get_eigen(ex, weights)[[1]])
#> [1] 134.8072870 22.9355599 9.7472631 1.1172154 0.3477705 0.1326819
R : version 4.3.2 FactoMineR2 : > 0.1.0
Hello,
FactoMineR
andFactoMineR2
return different eigenvalues in absence of scaling.