由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 极菜的SAS问题 -- 最简单的线性回归
相关主题
Help~~a question about SAS大家一般有什么软件做association study?
求教:SAS怎样实现限制必须经过某个点的GLM弱问sas问题about loglinear model
新人拜山,请教做SAS programmer主要用哪些procedure?proc genmod offset
没学过sql找工是不是很难?怎么在sas中计算sensitivity,关于genmod?
说一下今天的电面怎么去读proc genmod的output(关于multinomial)
求助:Power analysis for poisson regression?关于lasso的variable selection问题
Proc Genmod 模型请问怎么建立变量全是ordinal data的model?急,谢谢。
[合集] sas中proc logistic和genmond区别是?有人知道这是什么回事?proc genmod.
相关话题的讨论汇总
话题: proc话题: glm话题: sas话题: 极菜话题: reg
进入Statistics版参与讨论
1 (共1页)
z****k
发帖数: 1057
1
proc reg要研究两个变量的interaction是不是必须在data当中手动乘起来?
有没有简便的办法?
或者,是不是能用proc glm替代一下?我知道glm是支持*的
谢谢
w***y
发帖数: 114
2
proc reg data= ;
model y=x1 x2 x1*x2;
run;
z*********o
发帖数: 541
3


【在 w***y 的大作中提到】
: proc reg data= ;
: model y=x1 x2 x1*x2;
: run;

z****k
发帖数: 1057
4
这是哪个版本的SAS啊?为什么我的不可以?

【在 w***y 的大作中提到】
: proc reg data= ;
: model y=x1 x2 x1*x2;
: run;

s*********e
发帖数: 1051
5
you didn't miss anything. the answer given was wrong. x * x in model
statement won't work in proc reg.
however, try it in proc glm/genmod. i would be surprised if it won't work.
please post results after you try such that others could learn as well.
thanks.
z****k
发帖数: 1057
6
glm的话相应的语句应该怎么写?
我直接用model y = x1 + x2 + x1*x2
结果好像只给出ANONVA,没有coefficient

【在 s*********e 的大作中提到】
: you didn't miss anything. the answer given was wrong. x * x in model
: statement won't work in proc reg.
: however, try it in proc glm/genmod. i would be surprised if it won't work.
: please post results after you try such that others could learn as well.
: thanks.

1 (共1页)
进入Statistics版参与讨论
相关主题
有人知道这是什么回事?proc genmod.说一下今天的电面
longitudinal的data,一般都用什么方法分析?求助:Power analysis for poisson regression?
proc GLM和proc Reg、proc Genmod的比较Proc Genmod 模型
Abbott 面经[合集] sas中proc logistic和genmond区别是?
Help~~a question about SAS大家一般有什么软件做association study?
求教:SAS怎样实现限制必须经过某个点的GLM弱问sas问题about loglinear model
新人拜山,请教做SAS programmer主要用哪些procedure?proc genmod offset
没学过sql找工是不是很难?怎么在sas中计算sensitivity,关于genmod?
相关话题的讨论汇总
话题: proc话题: glm话题: sas话题: 极菜话题: reg