%macro examq1f(id, nodes,prog_recp, estrg_recp, menopause);
run;
proc freq data = work.gbcsmerged;
output= title 'frequency tables using macro';
tables &table var &id &nodes &prog_recp &estrg_recp &menopause;
run;
proc means n mean std median Q1 Q3 max min;
var &nodes...
%macro examq1f(id, nodes,prog_recp, estrg_recp, menopause);
run;
proc freq data = work.gbcsmerged;
output= title 'frequency tables using macro';
tables &table var &id &nodes &prog_recp &estrg_recp &menopause;
run;
proc means n mean std median Q1 Q3 max min;
var &nodes...
klaz2002 (Programmer)
3 Jun 09 12:10
probably data steps.
Thank klaz2002
for this valuable post!
Inappropriate post?
If so, Red Flag it!
Check out the FAQ
area for this forum!
charisi (TechnicalUser)
7 Jun 09 20:45
i have a data set and would like to run macro and obtain summary...
I am new with SAS and trying to use a macro to obtain summary statistics only on a limited number of variables on my data. What is the code/datastep for a macro that can enable me obtain summary statistics on my data?
i have a data set and would like to run macro and obtain summary...
i have a data set and would like to run macro and obtain summary statistics for three numeric variables var2,var3,var4 against one categoric variable(var5) using
the following either of this code:
%macro examq1f(id, var2, var3, var4, var5);
proc freq;
title 'frequency tables using...
thanks Klaz, Yes I have used those other codes. i was interested in macro because i wanted to use it to explore other parts of my dataset.again,what would be the required macro code/data step?
I am new with SAS and trying to use a macro to obtain summary statistics only on a limited number of variables on my data.
What is the code/datastep for a macro that can enable me obtain summary statistics on my data?
iam trying to transfer multiple 4 spreadsheets from Excel to SAS format and then merge the respectivefour tables into one dataset on SAS. how do i get an output as i go through the data steps . i would prefer this realtime out put to autosave .i do not want to autosave. please tell me how to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.