Download presentation
Presentation is loading. Please wait.
Published byHartanti Sasmita Modified over 6 years ago
1
Chapter 7: Macros in SAS Macros provide for more flexible programming in SAS Macros make SAS more “object-oriented”, like R Not a strong suit of text © Fall 2011 John Grego and the University of South Carolina
2
Macros in SAS In some ways, macros serve similar purposes as functions in R They can change a piece of a program and have that change be reflected throughout the program They can write repeatable code that can be used in many places efficiently They can allow programs to be dependent on data values that may be unknown at the time the program is written
3
Macro statements Macros are initially odd-looking (all those &’s and %’s) and intimidating—and can stay that way Macro statements consist of special code that SAS interprets and translates to standard SAS code before executing the program (this is done internally) The next several slides provide an overview
4
Macros vs Macro Variables
Macros are subprograms that are placed in key positions in the main SAS program simply by specifying the name of the macro in a special way Macro variables are similar to SAS variables, but do not belong to a data set. They are typically substituted into the program in key places
5
Macro syntax Macros are specified with a % prefix: %macroname;
Macro variables are specified with a & prefix: &mymacrovar
6
Local and Global Macro Variables
If a macro variable is defined in a macro, it is local—it can only be used in that macro If a macro variable is defined in “open code” (outside any macros), it is global and may be used anywhere
7
Defining Simple Macro Variables
The simplest way to assign a value to a macro variable is using a %LET statement Double quotes are needed for text, because SAS will not find macros inside single quotes %LET macrovarname= value; %LET mypower=3; %LET powerword=cube; Y=X**&mypower; TITLE “Taking the &powerword of each X value” ; Run SimpleLETmacro.sas
8
Macro Variable assignment
Note that the macro variables are referenced with an ampersand symbol. When SAS sees ¯ovarname, it will replace this with the value that was assigned to macrovarname in the %LET statement
9
Macro variable substitution
This way, if the value needs to be changed, we can change it once (in the %LET statement) rather than everywhere the variable is used To make a variable global, simply define it (with a %LET statement) outside of a macro Show IncludeMacro.sas Analogous to LaTeX.
10
Concatenating Text to Macro Variables
Often a useful future when generating data sets and files Add text to the front of a macro variable (textstring¯ovar) Add text to the end of a macro variable ($macrovar.textstring) Resolve embedded periods in file names ($macrovar..txt) Some of our later programs include examples
11
%INCLUDE %INCLUDE is another simple macro statement that allows us to insert sections of SAS code into a program; it can improve development and readability of long complex programs
12
Macros as a repeatable set of SAS statements
One important use of macros is packaging a piece of SAS code to be placed in various places in the SAS program. A macro has the syntax: %MACRO macroname; ..SAS statements %MEND macroname;
13
Invoking a macro This set of SAS statements that lies between the %MACRO and %MEND statements can be placed anywhere in a program by “invoking” the macro (often after the macro has been defined and initial DATA steps and PROC steps have been run: %macroname
14
Repeated macro calls This serves as a substitute for rewriting all those statements multiple times
15
Macros with parameters
Macros that, when invoked, simply repeat the same statements can be helpful, but not too flexible Using parameters can add flexibility to macros Parameters are macro variables whose values are set each time the macro is invoked
16
Macro call with parameters
Parameters of macros are similar to arguments of R functions %MACRO macroname (param1=.., param2=..); SAS statements.. %MEND macroname;
17
Referencing parameters in macros
When invoking the macro, we also provide the values of the parameters %macroname(param1=7.5, param2=January) Within the macro, the parameter name is referred to with an ampersand: Month=¶m2; The first call could also be %macroname(7.5,January) Run SafetyMacro.sas referring to equation in Class Exercise 10. Class Exercise 10 reviews the next two macros in detail.
18
Conditional Logic in Macros
Macro equivalents of conditions statements exist: %IF, %THEN, %ELSE, %DO, %END. These are used in a similar fashion as non-macro equivalents, except: They can only be used within a macro They can contain entire DATA steps or PROC steps; this extraordinary flexibility is why we need special notation for these statements Run RegMacro.sas
19
Automatic macro variables
Automatic macro variables such as &SYSDATE stores current date in character form &SYSDAY stores current day of week It can be useful to run a SAS program that performs different tasks depending on the date or day of the week &SYSLAST stores current SAS data set
20
CALL SYMPUT(“macrovarname”, value);
The CALL SYMPUT statements assigns a value to a macro variable, typically on the basis of data read in a previous DATA step CALL SYMPUT(“macrovarname”, value); SYMPUTN works for numeric assignments
21
CALL SYMPUT placement Read in variables (say, var1, var2, etc.) in a DATA step In a second DATA step, use CALL SYMPUT FlowerMacro.sas is identical to book example. I think it’s gratuitous, so I include a non-macro alternative.
22
Using CALL SYMPUT assignment
Invoke the macro variable (&comparison) in a separate step (it cannot be invoked in the same DATA step) IF var1>var2 THEN CALL SYMPUT(“comparison”,”greater”); ELSE CALL SYMPUT(“comparison”,”less”); IF var1>var2 THEN CALL SYMPUT(“comparison”,var3); Run IFMacro.sas and SafetySymputMacro.sas For numeric values, we have to force a numeric format with PUT, then trim leasing spaces.
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.