Code a PROC MEANS that shows both summed and averaged
output of the data.

Answers were Sorted based on User's Feedback



Code a PROC MEANS that shows both summed and averaged output of the data. ..

Answer / amit nakrani

I think we can do it in following way. Please correct me if
it is wrong.

proc means noprint data = sourcedata;
var var1 var2;
by var3;(optional)
output out = newdata
sum(var1,var2) = SumVar1 SumVar2
mean(var1,var2) = MeanVar1 MeanVar2;
run;

proc print data = newdata;
run;

Is This Answer Correct ?    9 Yes 2 No

Code a PROC MEANS that shows both summed and averaged output of the data. ..

Answer / sreekanth rao

please correct me if my thought process is wrong.

question is to show only sum and avg...

proc means data=test sum mean;
by var (optional);
run;

here we are req only for sum mean. use out=new data set
name to print most recent data set.

Thanks

hi friends expecting the ansewrs.


Thanks
Sreekanth rao

Is This Answer Correct ?    3 Yes 5 No

Code a PROC MEANS that shows both summed and averaged output of the data. ..

Answer / sumit

proc means data=work.emp sum mean;
class deptno;
var sal;
run;

Is This Answer Correct ?    0 Yes 2 No

Code a PROC MEANS that shows both summed and averaged output of the data. ..

Answer / venkatesh.layam

proc means data=sashelp.calss means sum=total;
class gender;
var age;
run;

Is This Answer Correct ?    0 Yes 3 No

Code a PROC MEANS that shows both summed and averaged output of the data. ..

Answer / srini

Proc Means data=test noprint;
var var1 var2(optional)
output out=newdataset
sum= mean=;
run;

Is This Answer Correct ?    0 Yes 8 No

Post New Answer

More SAS Interview Questions

What is the use of stop statement?

0 Answers  


Name statements that function at both compile and execution time.

7 Answers   Accenture,


Code a PROC MEANS that shows both summed and averaged output of the data.

5 Answers  


What is maximum number of rows and cols can be handled in SAS?

0 Answers   Signetsoft,


Do you know the features of sas?

0 Answers  






I have 50 variables in one data set, In reports i want to generate every 10 variables in one page how we will write code in proc report.

4 Answers  


What is the order of evaluation of the comparison && logical && relational operators:?

2 Answers   CitiGroup,


How does Mr.Lanka Srinivas teach SAS? Are his accomplishments real? What are the future prospects for SAS?

1 Answers   Student,


What is difference between sas rename and lable?

4 Answers  


is there any differnce between proc means and proc summary?

5 Answers  


What is the purpose of trailing @ and @@? How do you use them?

0 Answers  


How would you identify a macro variable?

0 Answers  


Categories