I had the same question as in this post: Factor Analysis with factomineR
It partially answered my question, but I also wonder how do we interpret such results.
I know that when we have variables with more than two levels each, we can use the graph to tell if the variables are over- or under-represented. However, in this case since we cannot have the graph.
I want to know the relation between the variable RJT_MEM_STG (2 levels) and the OAL_SRC_IND (6 levels).
This is my code
RJT<-c(361,2719,0,12016,11,23734)
NON_RJT<-c(0,1125,1,867,1,5161)
mat<-cbind(RJT,NON_RJT)
rownames(mat)<-c("B","E","F","J","M","T")
mat<-as.matrix(mat)
res_ca<-CA(mat, graph=F)
res_ca$row$coord
res_ca$row$contrib
res_ca$col$coord
res_ca$col$contrib
I get the following output:
I know that we should interpret only the varaibles which have the bigger contributions. So, I focus on the variable J and 1.
Should we do the rest of the analysis with the coordinates ?
Can someone help please ?