由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - non inferiority test for the difference of two proportions in "proc freq" ?
相关主题
新手问一个很基础的SAS code问题R重要还是SAS重要?
Question on PROC FREQSAS code - help needed. 8 个包子酬谢
请教一个sas问题。求助:data manipulation的一个问题
ods rtf startpage=never does not work anymore in SAS9.2?中级SAS问题
a SAS question新人拜山,请教做SAS programmer主要用哪些procedure?
新人求问SAS简单问题~~SAS problem ask for help!
求教proc sql 问题marketing analyst onsite 一般都怎么考SAS
ASK FOR ONE SAS QUESTION求SAS code,有包子
相关话题的讨论汇总
话题: freq话题: proc话题: test
进入Statistics版参与讨论
1 (共1页)
e****t
发帖数: 766
1
SAS 9.2 gives a way for noninferioriy test for the difference of two
proprotions.
I try to use that, but confused where to specify the command.
Does anyone use it before ?
here is the link for introduction
http://support.sas.com/documentation/cdl/en/procstat/63104/HTML/default/viewer.htm#procstat_freq_sect010.htm#procstat.freq.binopts
i tried specify in "proc freq" "tables" "test" comond, none of them work.
can anybody like to share the code ?
Thanks in advance!
s*r
发帖数: 2757
2
没用过,不过那一整个webpage说的都是tables后面的option

【在 e****t 的大作中提到】
: SAS 9.2 gives a way for noninferioriy test for the difference of two
: proprotions.
: I try to use that, but confused where to specify the command.
: Does anyone use it before ?
: here is the link for introduction
: http://support.sas.com/documentation/cdl/en/procstat/63104/HTML/default/viewer.htm#procstat_freq_sect010.htm#procstat.freq.binopts
: i tried specify in "proc freq" "tables" "test" comond, none of them work.
: can anybody like to share the code ?
: Thanks in advance!

P****D
发帖数: 11146
3
proc freq;
table xxx / binomial(noninf);
run;
e****t
发帖数: 766
4
Thanks all. it works now!
I specify similiar in riskdiff (option) ;
proc freq data = a ;
table x * y / riskdiff (noninf margin = 0.05) ;
run;
e****t
发帖数: 766
5
sorry to bother again,
in the output, i didn't find p value.
Only CI is given. (i know i can invert it to get SE...lazy to do it ) can we
get non inferiority p value from SAS directly?
proc freq data = a ;
table x * y / riskdiff (noninf margin = 0.05 method = score) ;
run;
1 (共1页)
进入Statistics版参与讨论
相关主题
求SAS code,有包子a SAS question
排序的问题,请问高手用SAS怎么做?新人求问SAS简单问题~~
SAS 求助, 一个小问题, 包子答谢求教proc sql 问题
[Hiring: Statistical Programmer]ASK FOR ONE SAS QUESTION
新手问一个很基础的SAS code问题R重要还是SAS重要?
Question on PROC FREQSAS code - help needed. 8 个包子酬谢
请教一个sas问题。求助:data manipulation的一个问题
ods rtf startpage=never does not work anymore in SAS9.2?中级SAS问题
相关话题的讨论汇总
话题: freq话题: proc话题: test