setwd("/Users/apple/Desktop/R/")
data<-read.table("pcadata",header=T,row.names=1)
PCAdata.pr<-princomp(data,cor=TRUE)
summary(PCAdata.pr,loadings=TRUE)
predict(PCAdata.pr)
screeplot(PCAdata.pr,type="lines")
biplot(PCAdata.pr,choices=1:2,scale=1,pc.biplot=FALSE)
scoresdata=PCAdata.pr$scores
scoredatasz<-read.table("scoredatasz.txt",header=T,row.names=1)
library(scatterplot3d)
> with(scoredatasz, {
s3d <- scatterplot3d(Comp.1, Comp.2, Comp.3, # x y and z axis
pch=19, # circle color indicates no. of cylinders
scale.y=.75, # scale y axis (reduce by 25%)
main="PCA analysis",
xlab="PCA1(47.12%)",
ylab="PCA2(16.65%)",
zlab="PCA3(16.03%)")
s3d.coords <- s3d$xyz.convert(Comp.1, Comp.2, Comp.3)
text(s3d.coords$x, s3d.coords$y, # x and y coordinates
labels=row.names(scoredatasz), # text to plot
pos=4, cex=.5) # shrink text 50% and place to right of points)
})
loaddatasz<-read.table("loadsz.txt",header=T,row.names=1)
with(loaddatasz, {
s3d <- scatterplot3d(Comp.1, Comp.2, Comp.3, # x y and z axis
pch=19, # circle color indicates no. of cylinders
scale.y=.75, # scale y axis (reduce by 25%)
main="PCA analysis",
xlab="PCA1(32.44%)",
ylab="PCA2(22.94%)",
zlab="PCA3(12.83%)")
s3d.coords <- s3d$xyz.convert(Comp.1, Comp.2, Comp.3)
text(s3d.coords$x, s3d.coords$y, # x and y coordinates
labels=row.names(loaddatasz), # text to plot
pos=4, cex=.5) # shrink text 50% and place to right of points)
})
R做PCA分析及三维可视化
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 【蝴蝶效应】 蝴蝶效应:上个世纪70年代,美国一个名叫洛伦兹的气象学家在解释空气系统理论时说,亚马逊雨林一只蝴蝶...