what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
No Answer is Posted For this Question
Be the First to Post Answer
what are the new features included in the new version of SAS i.e., SAS9.1.3?
5 Answers College School Exams Tests, Wockhardt,
What are the joins,types of joins and thier functions?
Why is SAS considered self-documenting?
what are some differences between proc summary and proc means? : Sas programming
What areas of SAS are you most interested in?
What are the efficacy variables in your study?
2 Answers Accenture, Quintiles,
Difference b/n proc means and proc summary procedures?
which date function advances a date, time or datetime value by a given interval? : Sas programming
1 new york 7,262,700 2 los angeles 3,259,340 3 philadelphia 1,642,900 how to read the above data using input statement consider the above data is in txt format externally u have to use infile and input statement.
What versions of SAS have you used (on which platforms)?
What is the role of sas grid administrator? : sas-grid-administration
/*i have the following dataset.*/ data score; input marks ; datalines; 10 20 30 40 50 60 70 80 90 100 ; run; Now i should get the result as sum of 1 to 5 i.e(10+20+30+40+50)=150 and 2 to 6 i.e(20+30+40+50+60)=200 and 3 to 7 i.e(30+40+50+60+70)=250 and so on. how to get it. thanks in advance