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

For what purposes have you used sas macros? : sas-macro

0 Answers  


what is snowflake schema? : Sas-di

0 Answers  


At compile time when a SAS data set is read, what items are created?

5 Answers  


how does sas know on which server the piece of code to be executed ? say if a proc olap code is written then how the sas application would detect on which server to execute.

1 Answers   TCS,


how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but it workss if its vijaya raghava but not for raghava perumal.how to do this?

8 Answers   Wipro, Xansa,






Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.

0 Answers  


What is the length assigned to the target variable by the scan function?

0 Answers  


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1 Answers  


name few built in sas transformation in DI studio ?

4 Answers   SAS,


Name validation tools used in SAS

0 Answers  


what is the diff b/w verification validation in sas

3 Answers   SAS,


if reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record

4 Answers   HSBC,


Categories