由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 菜鸟求教SAS logistic procedure
相关主题
[合集] MULTIVARIATE PROBIT/LOGIT USING SAS PROCEDURESAS MACRO和Procedure
求助,SAS运行proc logistic 出现离奇的现象!Re: SAS help : How to use Macro to select procedurs
[合集] 啥叫Probit model?[新手求救]怎样输出logistic regression的结果?
[合集] sas中proc logistic和genmond区别是?a SAS question: How to get Pseudo R2 in ordered probit regression?
Logit or Logistic?请教高手:ordered probit regression, 如何写SAS程序得到 Pseudo R^2?
在线急问10 伪币: marginal effect on logistic/probit model请问版上了解credit risk的牛人,
any difference between probit regression and logistic regression包子问题:default risk with censored data,信用卡公司应该常用的吧
拜求统计牛人给建议 Semi-parametric regression of binary outcomeSAS book问题
相关话题的讨论汇总
话题: sas话题: logistic话题: procedure话题: output话题: 菜鸟
进入Statistics版参与讨论
1 (共1页)
r*****g
发帖数: 78
1
proc logistic data=bogus;
model y=x1 x2 /link=probit;
output out=ouput prob=p1;
run;
Y就是简单的binary, 这里output出来的p1是0到1之间的概率。有没有一个option能
output出来either 0 or 1?
我印象中好像见过,但是查sas help又好像没有。
多谢指教。
D******n
发帖数: 2836
2
i think there is no such thing. Usually u use a cutoff value to
dichotomize the probability into 0s and 1s. You can use 0.5 which is not
necessarily the best choice.

【在 r*****g 的大作中提到】
: proc logistic data=bogus;
: model y=x1 x2 /link=probit;
: output out=ouput prob=p1;
: run;
: Y就是简单的binary, 这里output出来的p1是0到1之间的概率。有没有一个option能
: output出来either 0 or 1?
: 我印象中好像见过,但是查sas help又好像没有。
: 多谢指教。

1 (共1页)
进入Statistics版参与讨论
相关主题
SAS book问题Logit or Logistic?
统计SAS大侠请看一下这个图。谢谢了先。在线急问10 伪币: marginal effect on logistic/probit model
Re: 请问SAS 和SPLUS/R 具体有什么区别呢?any difference between probit regression and logistic regression
[合集] risk analysis 都用什么方法啊?拜求统计牛人给建议 Semi-parametric regression of binary outcome
[合集] MULTIVARIATE PROBIT/LOGIT USING SAS PROCEDURESAS MACRO和Procedure
求助,SAS运行proc logistic 出现离奇的现象!Re: SAS help : How to use Macro to select procedurs
[合集] 啥叫Probit model?[新手求救]怎样输出logistic regression的结果?
[合集] sas中proc logistic和genmond区别是?a SAS question: How to get Pseudo R2 in ordered probit regression?
相关话题的讨论汇总
话题: sas话题: logistic话题: procedure话题: output话题: 菜鸟