由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 用proc glm 怎么看哪个trt better? 3个包子答谢!!!!!!
相关主题
[合集] SAS大牛, HELP--About PROC GLM and Tukey, lines[合集] 请教PROC MIXED 高手:find difference in mean change f
新人求问SAS简单问题~~有人知道这是什么回事?proc genmod.
笨蛋又来问题:怎么用SAS算这个Proc mixed contrast
proc glm, contrast and pairwise multiple comparison give different result, why?请问一下,proc phreg
请问multiple comparison有什么用?大家如何处理nonparametric comparison中遇到的multiplicity?
一个 proc mixed 的问题请教个最基本的repeated measure
请教一下sas proc logistic里contrast statement的用法求教个SQL的问题
[合集] 这算什么DESIGNask a sum function
相关话题的讨论汇总
话题: trt话题: col话题: row话题: yield话题: treatment
进入Statistics版参与讨论
1 (共1页)
a***e
发帖数: 1627
1
题目是:
Perform the analysis of the data and identify the best treatment(一个6个,
已经量化为1-6,就是program中的trt).
SAS program :
data latin;
input row col trt yield;
cards;
1 1 3 3.10
1 2 6 5.95
1 3 1 1.75
1 4 5 6.40
1 5 2 3.85
1 6 4 5.30
2 1 2 4.80
2 2 1 2.70
2 3 3 3.30
2 4 6 5.95
2 5 4 3.70
2 6 5 5.40
3 1 1 3.00
3 2 2 2.95
3 3 5 6.70
3 4 4 5.95
3 5 6 7.75
3 6 3 7.10
4 1 5 6.40
4 2 4 5.80
4 3 2 3.80
4 4 3 6.55
4 5 1 4.80
4 6 6 9.40
5 1 6 5.20
5 2 3 4.85
5 3 4 6.60
5 4 2 4.60
5 5 5 7.00
5 6 1 5.00
6 1 4 4.25
6 2 5 6.65
6 3 6 9.30
6 4 1 4.95
6 5 3 9.30
6 6 2 8.40
;
proc glm;
class row col trt;
model yield = row col trt;
means trt/tukey;
contrast 'T3 T4 vs T5 T6' trt 0 0 1 1 -1 -1;
run;
程序中的trt就是treatment,我怎么也看不出来,这6个trt,哪个最好啊?请大家赐教
a***e
发帖数: 1627
2
请问是看哪个output的结果啊
c*********r
发帖数: 1802
3
看tukey是否显著。
1 (共1页)
进入Statistics版参与讨论
相关主题
ask a sum function请问multiple comparison有什么用?
Please help with a SAS contrast problem, Thanks!一个 proc mixed 的问题
How to use Proc format请教一下sas proc logistic里contrast statement的用法
proc mixed multivariate regression的参数[合集] 这算什么DESIGN
[合集] SAS大牛, HELP--About PROC GLM and Tukey, lines[合集] 请教PROC MIXED 高手:find difference in mean change f
新人求问SAS简单问题~~有人知道这是什么回事?proc genmod.
笨蛋又来问题:怎么用SAS算这个Proc mixed contrast
proc glm, contrast and pairwise multiple comparison give different result, why?请问一下,proc phreg
相关话题的讨论汇总
话题: trt话题: col话题: row话题: yield话题: treatment