why is sas considered self-documenting? : Sas programming
No Answer is Posted For this Question
Be the First to Post Answer
How to get second top scorer student from a class- table having different sections A, B, C & D? each section has same number of student.
Give some examples where proc report’s defaults are same as proc print’s defaults?
For what purposes have you used sas macros? : sas-macro
What is PROC in SAS?
What do you know about sas data set?
what is sas enterprise intelligence architecture? : Sas-bi
calculate the sum of value using only DATA STEP. data count_; input year name $ value; cards; 2006 xxx 10 2007 yyy 12 2006 xxx 20 2008 yyy 15 2007 xxx 15 ; out put should be like this year name T_value ----------------------- 2006 xxx 30 2007 xxx 15 2007 yyy 12 2008 xxx 15
Dear all, proc means data=dsn noprint completetypes; class trtmntgroup /preloadfmt; output out=tot n=n; format trtmntgroup trtf. ; by vstgrp descending severity; run; This is the code I used for AE table. I got the values without giving the variable ‘trtmntgroup(numeric)’ in var statement. And if I give the var statement for that variable i’m getting the same values.How is that possible? What is the difference between class and var statement? Could any one explain me how does proc means work at the back end. And what is the difference between _freq_ value and N value in proc means. Thanks and regards, Rajesh.
how do i get last 10obs from a dataset when we don't know about the number of obsevations in that dataset?
How would you delete observations with duplicate keys?
when we are using the PROC TRANSPOSE? OBSERVATIONS are repeated then what will happen and what it will show in log window.
What is difference between rename and lable in sas?