Code the MEANS to produce output to be used later.

Answers were Sorted based on User's Feedback



Code the MEANS to produce output to be used later...

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

Code the MEANS to produce output to be used later...

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

Post New Answer

More SAS Interview Questions

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?

2 Answers   Accenture,


how does sas handle missing values in sort order? : Sas programming

0 Answers  


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;

1 Answers   Accenture,


In sas, what are the areas that you are most interested in? : sas-grid-administration

0 Answers  


what is the prob plot in clinical domain

1 Answers   TCS,


What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?

0 Answers   Quintiles,


What is the basic structure of the SAS base program?

0 Answers  


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?

0 Answers  


· What are some good SAS programming practices for processing very large data sets?

6 Answers   Quintiles,


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.

2 Answers   Cap Gemini,


What is the maximum length of the macro variable?

0 Answers  


Categories