由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - Joint test for difference in a groups of variables between
相关主题
请教一个macro的问题Sample size for clustering analysis
关于AB test的疑问请教各位统计大拿一个categorical data的sample size 够不够大的问题
Principal component analysis请问R-square很弱,但是independent variables的p-value<0.05怎么解释?
如何解读非常小的p-value?一个关于macro的问题,多谢。
Clustering analysis with categorical variableshow to convert a categorical variable into a continuous variable
Clustering algorithm for categorical datasas macro 问题
我现在有一个15个variable的回归模型。 有什么系统性的方法去检测他们中间有哪些是interaction的。这些variable中有numerical的, 也有categorical或者bina一个 proc mixed 的问题
Sample Size 计算请教急问,在线等:SAS adv certification Question about SELECT v.s IF/THEN ELSE
相关话题的讨论汇总
话题: variables话题: test话题: joint话题: difference
进入Statistics版参与讨论
1 (共1页)
C********n
发帖数: 346
1
I want to do a joint test for overall difference in a group of variables
between two random samples. These variables include BOTH numerical AND
categorical variables. The null hypothesis is that there is no significant
difference between the two samples in the categorical and numerical variables.
What is the name of the test? Also, if you know how to implement the test
in SAS, it's even better.
Thanks a lot~~
w***y
发帖数: 114
2
for categorical
%macro cate(var)
proc freq data=
tables &var.*treatment/exact;
output out=pvalue(keep=XP2_fish) exact;
run;
%mend;
for continuous
%cont(var)
proc glm data= outstat=pvalue_con(keep=prob _type_ _name_ where=(type="
ss3"));
class treatment;
model &var.=treatment;
run;
%mend;
you need change it to macro sas code
C********n
发帖数: 346
3
Thank you! So there's no way to do a combined test for both categorical and
numerical variables at the same time?
I suppose that the test for categorical variables in your code is Fisher's
exact test? I know that it can be done for individual variables. Can it be
done jointly for a group of variables?
What about the test for the numerical variables? What is the name of the
test? Is it F-test for means? Is there a test that does not assume normality, or a joint test for difference in median
b*******r
发帖数: 152
4
there will be 'multiple comparison' issue, your type I error be biased.
1 (共1页)
进入Statistics版参与讨论
相关主题
急问,在线等:SAS adv certification Question about SELECT v.s IF/THEN ELSEClustering analysis with categorical variables
help! a q about sampling--------- ThanksClustering algorithm for categorical data
sas question我现在有一个15个variable的回归模型。 有什么系统性的方法去检测他们中间有哪些是interaction的。这些variable中有numerical的, 也有categorical或者bina
sampling weight variable怎么用到linear regression里啊?Sample Size 计算请教
请教一个macro的问题Sample size for clustering analysis
关于AB test的疑问请教各位统计大拿一个categorical data的sample size 够不够大的问题
Principal component analysis请问R-square很弱,但是independent variables的p-value<0.05怎么解释?
如何解读非常小的p-value?一个关于macro的问题,多谢。
相关话题的讨论汇总
话题: variables话题: test话题: joint话题: difference