Às 18:38 de 23/01/2023, varin sacha via R-help escreveu:
Dear R-experts,
Here below the R code working (page 8
http://www2.uaem.mx/r-mirror/web/packages/FactoMineR/FactoMineR.pdf).
But I am trying to get all the labels (the writes) : comfort, university,
economic, world, ... smaller.
How could I do that ?
Many thanks.
library(FactoMineR)
data(children)
res.ca <- CA (children, row.sup = 15:18, col.sup = 6:8)
______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
Hello,
I'm not finding "smaller" but are you looking for
rownames(res.ca$row$coord)
rownames(res.ca$row.sup$coord)
?
Hope this helps,
Rui Barradas
______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.