BookmarkSubscribeRSS Feed
ilikesas
Barite | Level 11

Hi,

 

I have a data table with many variables, and I want to do a proc ttest on these variables using a macro. Here is what I did:

 

1) First I did proc contents to extract the names of the variables and then putting them into a macro list:

 

proc contents data=mydata out=contents noprint;
run;

data contents;
set contents;
keep name;
run;

proc sql noprint;
 select name 
 into :name separated by ' '
 from contents;
 quit;

and then I wrote a macro that will do a proc ttest for all the varibales that are in the macro list "name":

 

%macro means;

%do %while("&name" NE "");

proc ttest data=mydata ;
      class developed;
	  var  &name;
   run;

%mend;

%means;


But the macro runs without stopping...

I therefore guess that the code has an error somewhere, but the intuition behind the code is that the macro should run for all the variables within the macro list "name" and stop when there are no more variables left.

 

Thanks!

1 REPLY 1
Reeza
Super User

You never extract the variables from the list, you pass the list directly to PROC TTEST.

Additionally, you never change the macro variable so it's always the same, which is a list of variables, so never empty and your loop never ends.

 

Also, I don't think you need the loop or the macro list.

 

Try either not including a VAR statement at all, I suspect the default is to run it for all numeric variables. Or try the following:

 

proc ttest data=mydata;

class developed;

var _numeric_;

run;

 

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1442 views
  • 1 like
  • 2 in conversation