What is the function of output statement in a SAS Program?
No Answer is Posted For this Question
Be the First to Post Answer
The below code we are using for creating more than one macro variables in proc sql using into clause. How we can use same code to create macro variables vara, varb, varc instead of var1, var2, var3.? proc sql noprint; select count(distinct(patient)) into :var1 - :var3 from dataset1 group by trtreg1c ; quit;
What does error:1 mean?
How would you combine 3 or more tables with different structures?
Name any two sas spawners? : sas-grid-administration
how do we get duplicate observations in a separate dataset?
How sas treats the dsd delimiters?
How would you delete observations with duplicate keys?
WHAT IS LAG FUNCTION ? WHERE CAN YOU IMPLEMENT THIS FUNCTION?
What happens in the following code, if u type 8 instead of *? proc sql noprint; create table abc as select 8 from lib.abc; quit;
i am importing large data from oracle to work library. in log there is a error message worklibrary space is not enough. then how to import the data safely to sas environment.
/* To determine the maximum and minimum of V1 */ data before3; input v1 v2 v3; cards; 3 2 1 4 6 5 2 1 3 6 5 4 1 3 2 5 4 6 ; run;
what is the difference between floor and ceil functions in sas? : Sas-administrator