what are some differences between proc summary and proc means? : Sas programming
Below is the table. Required to be output should be the highest number of each student_id. Example. Student_id Subject Marks 1 Hindi 86 2 Hindi 70 3 English 80 . Calculate sum and average marks for each group of student_id Example. Student_id Subject Marks Total Marks Average 1 English 40 181 60.33333 2 English 67 196 65.33333 3 English 80 160 53.33333 PLEASE PROVIDE THE CODE OF ABOVE PROBLEMS
Differences between where and if statement?
how to read character value without using substr function in sas ?
Write a SAS macro to calculate number of numbers in an email address
why is sas data integration studio important? : Sas-di
Can we replace a dataset into view?
SAS using companies in chennai
Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables.
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
What is SAS informats?
What is the pound sign used for the DATA _NULL_?
how to debug and test the sas program? : Sas-administrator