由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - help-how to get exact p value in sas
相关主题
请教proc freq 的chisq 分析关于SAS里面 PROC MODEL 的output,急!!
请问如何建模比较四个班学习方法的不同,急等,多谢。[SAS] data set options (obs=) in output tables
SAS daily tips - PROC FREQ请问用SAS'ODS时如何抑制结果到输出窗口?
Re: 请问SAS如何学起?【分享】SAS2010全球论坛文章合集
SAS急问:怎样在PROC REPORT 的TITLE 部分加粗字体(BOLD)?不用ODS怎样做?中级SAS问题
请教SAS ODS to Excel求助:SAS 画图输出问题.
[提问]如何用SAS在同一个ExcelBook里create several spreadsheets?请教一个survey weight的问题
求助!该如何准备这个电话面试?包子请教:SASoutput encoding的问题
相关话题的讨论汇总
话题: exact话题: value话题: sas话题: xxx话题: get
进入Statistics版参与讨论
1 (共1页)
x***i
发帖数: 135
1
Sorry, I can't input Chinese now.
I am using SAS to to linear regression and logistic regression. The p value
for the linear model (eg: X1, X2) shows <0.0001. But, my boss want the exact
p value (such as 1X10-7). I am wondering how to get the exact p value.
Thanks a lot!
d*******o
发帖数: 493
2
Very sadly SAS has no such option. Only proc means can specify maximum
decimal places.
However you can do it in R with Options(digits=n)
x***i
发帖数: 135
3
thanks

【在 d*******o 的大作中提到】
: Very sadly SAS has no such option. Only proc means can specify maximum
: decimal places.
: However you can do it in R with Options(digits=n)

j********e
发帖数: 52
4
这个,好像不是吧。
proc freq data=mitbbs;
tables a*b*c / cmh;
output out=bbs cmh;
run;
proc print data=bbs;
run;

【在 d*******o 的大作中提到】
: Very sadly SAS has no such option. Only proc means can specify maximum
: decimal places.
: However you can do it in R with Options(digits=n)

O*******r
发帖数: 753
5
cmh是什么东东?

【在 j********e 的大作中提到】
: 这个,好像不是吧。
: proc freq data=mitbbs;
: tables a*b*c / cmh;
: output out=bbs cmh;
: run;
: proc print data=bbs;
: run;

y*****t
发帖数: 1367
6
cmh是Cochran-Mantel-Haenszel的缩写, a test for general association~

【在 O*******r 的大作中提到】
: cmh是什么东东?
d*******1
发帖数: 854
7
proc reg;
model=XXXXX;
ods output XXX=XXX;
run;
proc print data=XXX;
format probt;
var probt;
run;
check the ODS help for the name of table you need.

value
exact

【在 x***i 的大作中提到】
: Sorry, I can't input Chinese now.
: I am using SAS to to linear regression and logistic regression. The p value
: for the linear model (eg: X1, X2) shows <0.0001. But, my boss want the exact
: p value (such as 1X10-7). I am wondering how to get the exact p value.
: Thanks a lot!

s*r
发帖数: 2757
8
100wb
C******t
发帖数: 72
9
proc reg;
model=a b c d;
ods output XXX=XXX;
run;
data xxx;
set xxx;
format pvalue e10.;
run;
T****n
发帖数: 2195
10
zan yi ge

【在 C******t 的大作中提到】
: proc reg;
: model=a b c d;
: ods output XXX=XXX;
: run;
: data xxx;
: set xxx;
: format pvalue e10.;
: run;

b*******r
发帖数: 152
11
re
d*******o
发帖数: 493
12
OK.长见识了。
r*******e
发帖数: 510
13
exact p-value是这个意思?

【在 d*******o 的大作中提到】
: Very sadly SAS has no such option. Only proc means can specify maximum
: decimal places.
: However you can do it in R with Options(digits=n)

1 (共1页)
进入Statistics版参与讨论
相关主题
包子请教:SASoutput encoding的问题SAS急问:怎样在PROC REPORT 的TITLE 部分加粗字体(BOLD)?不用ODS怎样做?
公司从SAS转到WPS,大家有懂WPS的吗?请教SAS ODS to Excel
请教一个分析ordinal data的问题[提问]如何用SAS在同一个ExcelBook里create several spreadsheets?
SAS有类似put直接往output里写东西的语句吗?求助!该如何准备这个电话面试?
请教proc freq 的chisq 分析关于SAS里面 PROC MODEL 的output,急!!
请问如何建模比较四个班学习方法的不同,急等,多谢。[SAS] data set options (obs=) in output tables
SAS daily tips - PROC FREQ请问用SAS'ODS时如何抑制结果到输出窗口?
Re: 请问SAS如何学起?【分享】SAS2010全球论坛文章合集
相关话题的讨论汇总
话题: exact话题: value话题: sas话题: xxx话题: get