由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 大家一般有什么软件做association study?
相关主题
[合集] sas中proc logistic和genmond区别是?求 SAS LOGIT model 的 Code
怎么去读proc genmod的output(关于multinomial)GEE model一问
弱问sas问题about loglinear model请教个比较slope的问题——包子贴
新人拜山,请教做SAS programmer主要用哪些procedure?genmod的问题
proc GLM和proc Reg、proc Genmod的比较拜求统计牛人给建议 Semi-parametric regression of binary outcome
R重要还是SAS重要?请问poisson regression和 Log-linear model之间的联系?
再问multinomial logit面试问题,大家看看我回答的靠谱么
用sas作discrete choice model求教Help~~a question about SAS
相关话题的讨论汇总
话题: proc话题: study话题: model话题: sum
进入Statistics版参与讨论
1 (共1页)
p*****0
发帖数: 3104
1
可以用sas吗?如果可以,用什么procedure?Thanks a lot.
l*******n
发帖数: 13
2
proc freq;
proc genmode;
proc catmod;
.......
p*****0
发帖数: 3104
3
thanks
I only know they can be used to model logistic regression, nice to know that
by the way, which ones are preferred if dealing with large data sets?

【在 l*******n 的大作中提到】
: proc freq;
: proc genmode;
: proc catmod;
: .......

l*******n
发帖数: 13
4
the procedures deal with count data, the raw dataset should be aggregated
before analysis if it is too large. for example
A B RESPONSE
1 1 0
1 1 0
1 0 1
1 0 0
.....
TO
A B RES0 RES1
1 1 SUM(0) SUM(1)
...
PROC GENMOD IS BEST FOR LOG LINEAR MODEL (multiple responses), can also be
used to fit logit model, allowing predictor variables
PROC FREQ gives simple statistics to represent the association, not for real
-sense modeling
p*****0
发帖数: 3104
5
thanks so much
wonderful!

【在 l*******n 的大作中提到】
: the procedures deal with count data, the raw dataset should be aggregated
: before analysis if it is too large. for example
: A B RESPONSE
: 1 1 0
: 1 1 0
: 1 0 1
: 1 0 0
: .....
: TO
: A B RES0 RES1

1 (共1页)
进入Statistics版参与讨论
相关主题
Help~~a question about SASproc GLM和proc Reg、proc Genmod的比较
求教:SAS怎样实现限制必须经过某个点的GLMR重要还是SAS重要?
求助:Power analysis for poisson regression?再问multinomial logit
Proc Genmod 模型用sas作discrete choice model求教
[合集] sas中proc logistic和genmond区别是?求 SAS LOGIT model 的 Code
怎么去读proc genmod的output(关于multinomial)GEE model一问
弱问sas问题about loglinear model请教个比较slope的问题——包子贴
新人拜山,请教做SAS programmer主要用哪些procedure?genmod的问题
相关话题的讨论汇总
话题: proc话题: study话题: model话题: sum