《用matlab做一元线性回归分析(共4页).doc》由会员分享,可在线阅读,更多相关《用matlab做一元线性回归分析(共4页).doc(4页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精选优质文档-倾情为你奉上用matlab做一元线性回归分析一元线性回归分析是在排除其他影响因素的假定其他影响因素确定的情况下,分析某一个因素(自变量)是如何影响另外一个事物(因变量)的过程,所进行的分析是比较理想化的。用SPSS可以做一元线性回归分析,但是当回归的自变量比较多的时候,一个一个的输入会比较麻烦,增加了计算量,本文中描述了如何用matlab语言来实现一元线性回归分析。在matlab中,regress命令是用来做回归的。假如有96个SNP,作为自变量,有一个因变量,比如说HDL,LDL等等,将它们以列导入matlab。值得注意的是:自变量前面必须有一列全为1的数据,看下面例子即可理解
2、。for i=1:96z=ones(2334,1), x(:,i);b,bint,r,rint,stats=regress(y,z);c(i,:)=stats;end在一元线性回归方程中,回归方程的显著性检验可以替代回归系数的显著性检验,并且F=T2百度中的一个例子:X=1 1 4 6 8 11 14 17 21Y=2.49 3.30 3.68 12.20 27.04 61.10 108.80 170.90 275.50X=ones(9,1), Xb,bint,r,rint,stats= regress(Y,X)输出向量b,bint为回归系数估计值和它们的置信区间,r,rint为残差及其置信区
3、间,stats是用于检验回归模型的统计量,有三个数值,第一个是R2,其中R是相关系数,第二个是F统计量值,第三个是与统计量F对应的概率P,当P时拒绝H0,回归模型成立regressMultiple linear regressionSyntaxb = regress(y,X)b,bint = regress(y,X)b,bint,r = regress(y,X)b,bint,r,rint = regress(y,X)b,bint,r,rint,stats = regress(y,X). = regress(y,X,alpha)Descriptionb = regress(y,X) return
4、s the least squares fit of y on X by solving the linear modelfor , where:y is an n-by-1 vector of observationsX is an n-by-p matrix of regressors is a p-by-1 vector of parameters is an n-by-1 vector of random disturbancesb,bint = regress(y,X) returns a matrix bint of 95% confidence intervals for .b,
5、bint,r = regress(y,X) returns a vector, r of residuals.b,bint,r,rint = regress(y,X) returns a matrix rint of intervals that can be used to diagnose outliers. If rint(i,:) does not contain zero, then the ith residual is larger than would be expected, at the 5% significance level. This is evidence that the ith observation is an outlier.b,bint,r,rint,stats = regress(y,X) returns a vector stats that contains the R2 statistic, the F statistic and a p value for the full model, and an estimate of the error variance.专心-专注-专业
限制150内