Explain the difference between informat and format with an example.
No Answer is Posted For this Question
Be the First to Post Answer
How do you test for missing values?
What are the statements that are executed only?
How to create an external dataset with sas code?
how can u create zero observation dataset?
What is the basic syntax style in SAS?
how can u extract,transform and loading?
What is the general format of function in sas? : sas-grid-administration
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 is the difference btw proc means and proc univariate?
code the tables statement for a single level frequency?
Explain data_null_?
How did you use the round function?give an example(don't say it will round to the nearest intger) eg1:round(84.55,.1) =84.6 eg2:round(92.64,.1)=92.6,How it is happening like this tell me the logic,that is how the round function works when we have deimal values?