2011年10月8日
摘要: data = read.table("file", header=TRUE)R commands for PCAHere are some R commands for PCApcdat = princomp(data) - It does actual job and put the results to pcdat. It will use covariance matrixpcdat = princomp(data,cor=TRUE) - It will use correlation matrixsummary(pcdat) - It will print stan 阅读全文
posted @ 2011-10-08 16:48 香格里拉\(^o^)/ 阅读(4040) 评论(0) 推荐(0)