由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - A SAS macro question: how to capture the number of variables?
相关主题
model和variables都sig.但每个category都不sig[合集] SAS 问题:如何在使用macro的时候保护data。
SAS help : The scope of macro variables一个关于macro的问题,多谢。
请问:想fit gamma 并同时用lasso的方法做variable selection急问:SAS batch submission with macro variable
包子求解释,为什么anova解释variance这么少问你们个 sas macro 的问题
[合集] 电话面试完了,肯定没戏,大家帮我看看题目,就算学习吧SAS Macro 问题请教 。。。
how to convert a categorical variable into a continuous variable问一个SAS macro的问题
求问~做大数据时怎样知道哪些predictor应该构造interaction term??Re: SAS help : How to use Macro to select procedurs
初级问题:怎么算某variable 的所有observation的加和sas 中如何给一个variable 加密?
相关话题的讨论汇总
话题: macro话题: number话题: sas话题: variables话题: question
进入Statistics版参与讨论
1 (共1页)
c**********e
发帖数: 2007
1
Suppose one of the inputs is a macro variable. The macro variable is a list
of variable name separated by space.
For example, in the macro, the list of predictors is the input:
%macro regression(ind_var);
proc reg data=mydata;
model y = &ind_var.;
run;
%mend;
A call of the macro takes the following form:
%regression(x1 x2 x3 w1 w2);
My question is how to get the number of predictors. In the above macro call,
I want to get the number 5, which is the number of independent variables.
How to do it?
Thansk a ton!
D******n
发帖数: 2836
2
%sysfunc(countw(&ind_var))

list

【在 c**********e 的大作中提到】
: Suppose one of the inputs is a macro variable. The macro variable is a list
: of variable name separated by space.
: For example, in the macro, the list of predictors is the input:
: %macro regression(ind_var);
: proc reg data=mydata;
: model y = &ind_var.;
: run;
: %mend;
: A call of the macro takes the following form:
: %regression(x1 x2 x3 w1 w2);

1 (共1页)
进入Statistics版参与讨论
相关主题
sas 中如何给一个variable 加密?[合集] 电话面试完了,肯定没戏,大家帮我看看题目,就算学习吧
Help! A data step problemhow to convert a categorical variable into a continuous variable
How can I loop through a list of strings as variables in a求问~做大数据时怎样知道哪些predictor应该构造interaction term??
怎么让 R 把一个variable当作file来read初级问题:怎么算某variable 的所有observation的加和
model和variables都sig.但每个category都不sig[合集] SAS 问题:如何在使用macro的时候保护data。
SAS help : The scope of macro variables一个关于macro的问题,多谢。
请问:想fit gamma 并同时用lasso的方法做variable selection急问:SAS batch submission with macro variable
包子求解释,为什么anova解释variance这么少问你们个 sas macro 的问题
相关话题的讨论汇总
话题: macro话题: number话题: sas话题: variables话题: question