Code the MEANS to produce output to be used later.
Answers were Sorted based on User's Feedback
Answer / siri
proc means data=XYZ noprint;
by var;
output out=ZYX;
run;
output out is important to producethe poutputt to be used
in later stages
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ss
Actually they aksed to produce output to be used later, in
that case you have to give the permanent libref.
Is This Answer Correct ? | 4 Yes | 3 No |
When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
how does sas handle missing values in sort order? : Sas programming
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;
In sas, what are the areas that you are most interested in? : sas-grid-administration
what is the prob plot in clinical domain
What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?
What is the basic structure of the SAS base program?
How would you code a merge that will keep only the observations that have matches from both sets.
5 Answers Accenture, Bank Of America,
Difference between nodup and nodupkey options?
· What are some good SAS programming practices for processing very large data sets?
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.
What is the maximum length of the macro variable?