how could you generate test data with no input data? : Sas programming
No Answer is Posted For this Question
Be the First to Post Answer
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
What has been your most common programming mistake?
How are numeric and character missing values represented internally?
CHOOSE ANY ONE OF THE PROCEDURE FOLLOWING TO GENERATE THE REPORTS? HOW CAN YOU SAY IT IS BETTER THAN THE OTHER? AND DEFERENCIATE THESE TWO ? 1). REPORT PROCEDURE 2). TABULATE PROCEDURE
how we can create optional or required parameters in SAS macro...
How would you identify a macro variable? : sas-macro
Name validation tools used in SAS
What SAS statements would you code to read an external raw data file to a DATA step?
How would you code a macro statement to produce information on the SAS log? This statement can be coded anywhere.
Why is a STOP statement needed for the point=option on a SET statement?
I am looking to buy a sas advance book. So any one can guide me that which one i should buy.
i have a null dataset with 10 variables; i want to print only name of the varibales in log window and also output window.how can we do this one?