由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 求助 sas 高手 一个程序问题
相关主题
Confidenence interval calulation problemSAS base question
Standard error of Percent 的计算what is the problem?
Interesting sas problemSAS/IML读已有数据问题
请教一个Test两个group差别的显著性问题R-Question about attach
offer and negotiationSAS软件下载地址已失效(as of 3/23/2010)
Use SAS to fill in missing values?null model fit statistics (in proc logistic and etc)
发包子问一个sample size 的问题!!!SAS help
初级问题:怎么算某variable 的所有observation的加和把base考了
相关话题的讨论汇总
话题: std话题: value话题: dev话题: mean话题: 结果
进入Statistics版参与讨论
1 (共1页)
b*********i
发帖数: 122
1
Market Model Abnormal Returns,
Value Weighted Index
StdCsect Generalized
Days Z Sign Z
--------------------------------------------
(-10,+10) 3.931*** 3.020**
(-5,+5) 6.161*** 4.840***
(-1,+1) 2.856** 2.484**
(0,0) 2.075* -1.585$
--------------------------------------------
The symbols $,*,**, and *** denote
statistical significance at the 0.10, 0.05,
0.01 and 0.001 levels, respectively, using
a generic one-tail test. The symbols (,<
or ),> etc. correspond to $,* and show
这是一个SAS 的输出结果,底下是文字说明,我现在做一个paired t test 也会有一个
结果,但是 怎样加一个CODE 出现类似这样的结果,星号 以及下面的说明呢?
proc ttest data=mydata;
paired ROA2012*ROA2013;
run;
这个自带的ALPHA=0.05 结果出来以后
Difference: ROA2012 - ROA2013
N Mean Std Dev Std Err Minimum Maximum
162 -0.6292 4.8803 0.3834 -54.3000 5.0200
Mean 95% CL Mean Std Dev 95% CL Std Dev
-0.6292 -1.3864 0.1280 4.8803 4.4004 5.4784
DF t Value Pr > |t|
161 -1.64 0.1028
我希望结果也可以带个星号 p VALUE 该怎么做? 多谢
b*********i
发帖数: 122
2
Market Model Abnormal Returns,
Value Weighted Index
StdCsect Generalized
Days Z Sign Z
--------------------------------------------
(-10,+10) 3.931*** 3.020**
(-5,+5) 6.161*** 4.840***
(-1,+1) 2.856** 2.484**
(0,0) 2.075* -1.585$
--------------------------------------------
The symbols $,*,**, and *** denote
statistical significance at the 0.10, 0.05,
0.01 and 0.001 levels, respectively, using
a generic one-tail test. The symbols (,<
or ),> etc. correspond to $,* and show
这是一个SAS 的输出结果,底下是文字说明,我现在做一个paired t test 也会有一个
结果,但是 怎样加一个CODE 出现类似这样的结果,星号 以及下面的说明呢?
proc ttest data=mydata;
paired ROA2012*ROA2013;
run;
这个自带的ALPHA=0.05 结果出来以后
Difference: ROA2012 - ROA2013
N Mean Std Dev Std Err Minimum Maximum
162 -0.6292 4.8803 0.3834 -54.3000 5.0200
Mean 95% CL Mean Std Dev 95% CL Std Dev
-0.6292 -1.3864 0.1280 4.8803 4.4004 5.4784
DF t Value Pr > |t|
161 -1.64 0.1028
我希望结果也可以带个星号 p VALUE 该怎么做? 多谢
a****g
发帖数: 8131
3
有两种方法
1. 如果下面这个表格是你所有的结果,你可以用个hard coding
2. 如果结果比较多,你可以用个format,pvalue to stars的format.

【在 b*********i 的大作中提到】
: Market Model Abnormal Returns,
: Value Weighted Index
: StdCsect Generalized
: Days Z Sign Z
: --------------------------------------------
: (-10,+10) 3.931*** 3.020**
: (-5,+5) 6.161*** 4.840***
: (-1,+1) 2.856** 2.484**
: (0,0) 2.075* -1.585$
: --------------------------------------------

p***r
发帖数: 920
4
google: ODS FOOTNOTE
1 (共1页)
进入Statistics版参与讨论
相关主题
把base考了offer and negotiation
[合集] SAS 问题:如何在使用macro的时候保护data。Use SAS to fill in missing values?
SAS问题请教, keep/drop发包子问一个sample size 的问题!!!
问你们个 sas macro 的问题初级问题:怎么算某variable 的所有observation的加和
Confidenence interval calulation problemSAS base question
Standard error of Percent 的计算what is the problem?
Interesting sas problemSAS/IML读已有数据问题
请教一个Test两个group差别的显著性问题R-Question about attach
相关话题的讨论汇总
话题: std话题: value话题: dev话题: mean话题: 结果