if i having variables named a b c d e f ,how to find total of
each variable ????give syntax...??
Answer Posted / shambhu verma
There are various method for it but the simple way to find
out total / sum of each numerical variables is...........
Proc print data= sas data set;
sum var-list;
run;
| Is This Answer Correct ? | 18 Yes | 0 No |
Post New Answer View All Answers
List down the reasons for choosing sas over other data analytics tools.
What is a method to debug and test your SAS program?
What is a put statement?
What is the difference between proportion and average?
what is change analysis in sas di ? : Sas-di
Given an unsorted data set, how to read the last observation to a new data set?
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
explain the proc in sas? : Sas-administrator
What function CATX syntax does?
What is the difference between class statement and by statement in proc means?
What is the maximum and minimum length of macro variable
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
Explain the special input delimiters used in sas programming.
Explain why double trailing @@ is used in input statement?