Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please complete in SAS and provide output as well as modified codes 11. Controlling Macro Variable Storage Open the m105e11 program shown below into the
Please complete in SAS and provide output as well as modified codes
11. Controlling Macro Variable Storage Open the m105e11 program shown below into the Editor window. imacro varscope a. data _null_; set orion.customer type end-final; call symputx( 'localtype' |left (_n_), Customer_Type)i if final then call symputx(' localn',-n); run ; %put imend -user-; varscope; b. Modify the program so that all macro variables that are created in the DATA step are stored in the local symbol table. c. Modify the program by adding the following statement before the DATA step and removing the scope specification in the SYMPUTX routine: local x; In which symbol table are the macro variable d. Modify the program so that all macro variables that are created in the DATA step are stored in the global symbol tableStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started