SAS中文论坛

标题: 如何进行在sas中进行联合方差分析啊? [打印本页]

作者: shiyiming    时间: 2006-8-2 15:48
标题: 如何进行在sas中进行联合方差分析啊?
我要做品种的一年多点的分析,要怎么样做实现联合方差分析?
作者: shiyiming    时间: 2006-8-2 17:12
标题: to lum28
请教一下,什么是联合方差分析?
作者: shiyiming    时间: 2006-8-3 01:03
标题: to lum28
是Covariance 吧?


Analysis of Covariance (ANCOVA)
Analysis of Covariance, or ANCOVA, combines features of ANOVA and regression. That is, examine treatment differences adjusted for covariate. Similarly, determine whether there is a significant relationship between X and Y after adjusting for treatment. ANCOVA is typically done using proc glm.

proc glm;                       /* analysis of covariance */
   class trt;                   /* trt = factor, x = covariate */
   model y = x trt;

proc glm;                       /* analysis of covariance */
   class trt;                   /* with different slopes */
   model y = x trt x*trt;
作者: shiyiming    时间: 2006-8-3 01:07
标题: to nfiona
对中文统计名称不太熟悉的说,第一次回贴,不要笑话哈
作者: shiyiming    时间: 2006-8-3 11:17
标题: 已经解决
谢谢各位的回帖,该问题我已经解决。希望以后多多交流。本人对于sas不是特别精通,只是会些皮毛。关于什么是联合方差分析,就是我做一年多点试验,首先对各点进行方差同质测验,如果一致,就可以把各点联合起来进行方差分析,如果不一致,就不能进行联合方差分析了。




欢迎光临 SAS中文论坛 (http://mysas.net/forum/) Powered by Discuz! X3.2