
多元统计
相逢一醉为前缘
这个作者很懒,什么都没留下…
展开
-
第二章:Statistical Modeling
第二章:Statistical Modeling目录2.2 The difference between statistical and probabilistic model2.3 A simple example of statistical modeling2.3.1 Classical statistics for classical data2.4 Binomial distributions and maximum likelihood2.4.1 An example2.5 More boxes翻译 2020-06-28 17:49:33 · 825 阅读 · 0 评论 -
主成分分析和因子分析区别与联系
主成分分析可以简单的总结成一句话:数据的压缩和解释。常被用来寻找判断某种事物或现象的综合指标,并且给综合指标所包含的信息以适当的解释。在实际的应用过程中,主成分分析常被用作达到目的的中间手段,而非完全的一种分析方法。可以通过矩阵变换知道原始数据能够浓缩成几个主成分,以及每个主成分与原来变量之间线性组合关系式。但是细心的朋友会发现,每个原始变量在主成分中都占有一定的分量,这些分量(载荷)之间的大小分...转载 2018-03-25 20:53:54 · 108694 阅读 · 8 评论 -
25.3 Cluster analysis
kmd <- read.table("c:\\temp\\kmeansdata.txt",header=T)attach(kmd)names(kmd)par(mfrow=c(2,2))plot(x,y,pch=16)plot(x,y,col=group,pch=16)model <- kmeans(data.frame(x,y),6)plot(x,y,col=model[[1]])mo...翻译 2018-04-01 12:26:22 · 181 阅读 · 0 评论 -
Discriminant analysis
, you know the identity of each individual (unlike cluster analysis) and you want to know how theexplanatory variables contribute to the correct classification of individuals. The method works by unco...翻译 2018-04-01 15:34:49 · 394 阅读 · 0 评论 -
主成分分析
student.pr <- princomp(student, cor = TRUE) summary(student.pr, loadings=TRUE)predict(student.pr)screeplot(student.pr,type="lines")R<-matrix(0, nrow=16, ncol=16, dimnames=list(names, names))for ...转载 2018-03-29 00:01:08 · 794 阅读 · 0 评论 -
因子分析
factor.analy1<-function(S, m){p<-nrow(S); diag_S<-diag(S); sum_rank<-sum(diag_S)rowname<-paste("X", 1:p, sep="")colname<-paste("Factor", 1:m, sep="")A<-matrix(0, nrow=转载 2018-03-29 16:06:38 · 572 阅读 · 0 评论 -
典型相关分析
test<-scale(test)ca<-cancor(test[,1:3],test[,4:6])U<-as.matrix(test[, 1:3])%*% ca$xcoefV<-as.matrix(test[, 4:6])%*% ca$ycoefplot(U[,1], V[,1], xlab="U1", ylab="V1")plot(U[,3], V[,3], xlab=...转载 2018-03-29 16:50:40 · 870 阅读 · 0 评论