I am running PCA using FactoMineR and cannot seem to get the individual points labeled on the Individuals factor map. My dataset ("ExData.csv") contains values in a matrix with 13 rows (labeled A through M) and 10 columns (labeled N through W). I am running the following:
mydata <- read.csv("ExData.csv",header=TRUE,row.names=1)
attach(mydata)
library(FactoMineR)
X <- cbind(N,O,P,Q,R,S,T,U,V,W)
res.pca <- PCA(X)
When PCA runs, I get the Individuals factor map (PCA) with the points labeled 1-13, instead of A trough M. The Variables factor map (PCA) properly labels the loadings N through W.
How can I get the individual points on the Individuals factor map (PCA) plot to be properly labeled (i.e., A through J)?