博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
协方差分析 | ANCOVA (Analysis of Covariance) | R代码
阅读量:5080 次
发布时间:2019-06-12

本文共 1947 字,大约阅读时间需要 6 分钟。

协方差分析是方差分析、回归分析和协方差的结合体。

我觉得这种分析思想非常实用,尤其是对confounder云集的生物学数据。

 

回顾:

什么是协方差?co-vary

协方差和相关性?standardize

 

协方差分析最经典的一个例子就是GWAS中移除SNP中的人种因素。

If you are worried about leaving out covariates you could regress out them first and analyse the residuals against the Snps.

在实验设计中,协变量是独立变量,实验者不能操纵,但仍影响实验结果。
我想知道温度对于降水量的影响,但是海拔高度、经纬度、当地湿度等变量也会影响降水量。那么,在我的研究中,温度就是自变量,降水量是应变量,而海拔高度、经纬度和当地湿度就是协变量。

 

> input <- mtcars[,c("am","mpg","hp")]> print(head(input))                  am  mpg  hpMazda RX4          1 21.0 110Mazda RX4 Wag      1 21.0 110Datsun 710         1 22.8  93Hornet 4 Drive     0 21.4 110Hornet Sportabout  0 18.7 175Valiant            0 18.1 105> # Get the dataset.> input <- mtcars> # Create the regression model.> result <- aov(mpg~hp*am,data = input)> print(summary(result))            Df Sum Sq Mean Sq F value   Pr(>F)    hp           1  678.4   678.4  77.391 1.50e-09 ***am           1  202.2   202.2  23.072 4.75e-05 ***hp:am        1    0.0     0.0   0.001    0.981    Residuals   28  245.4     8.8                     ---Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1> # Get the dataset.> input <- mtcars> # Create the regression model.> result <- aov(mpg~hp+am,data = input)> print(summary(result))            Df Sum Sq Mean Sq F value   Pr(>F)    hp           1  678.4   678.4   80.15 7.63e-10 ***am           1  202.2   202.2   23.89 3.46e-05 ***Residuals   29  245.4     8.5                     ---Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1> # Get the dataset.> input <- mtcars> # Create the regression models.> result1 <- aov(mpg~hp*am,data = input)> result2 <- aov(mpg~hp+am,data = input)> # Compare the two models.> print(anova(result1,result2))Analysis of Variance TableModel 1: mpg ~ hp * amModel 2: mpg ~ hp + am  Res.Df    RSS Df  Sum of Sq     F Pr(>F)1     28 245.43                           2     29 245.44 -1 -0.0052515 6e-04 0.9806

  

 

参考:

 

转载于:https://www.cnblogs.com/leezx/p/9013504.html

你可能感兴趣的文章
csv HTTP简单表服务器
查看>>
OO设计的接口分隔原则
查看>>
数据库连接字符串大全 (转载)
查看>>
java类加载和对象初始化
查看>>
对于负载均衡的理解
查看>>
django简介
查看>>
window.event在IE和Firefox的异同
查看>>
常见的js算法面试题收集,es6实现
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Windows10 下Apache服务器搭建
查看>>
HDU 5458 Stability
查看>>
左手坐标系和右手坐标系
查看>>
solr后台操作Documents之增删改查
查看>>
http://yusi123.com/
查看>>
文件文本的操作
查看>>
Ubuntu linux下gcc版本切换
查看>>
记一次Web服务的性能调优
查看>>
jQuery.form.js使用
查看>>
(转)linux sort,uniq,cut,wc命令详解
查看>>
关于ExecuteNonQuery执行的返回值(SQL语句、存储过程)
查看>>