What is Tabulate.?Why we use it.? Which type of output we
get from Tabulate.?
Answer Posted / sivakumar sekar
The process of arranging data oderly in form of rows n
columns is knwn as tabulation. rows r horizontal
arangments, columns r vertical arngmnts
Example Using PROC TABULATE
To produce exactly what your boss wants, use the following
code:
PROC TABULATE;
CLASS GENDER;
VAR AGE INCOME EDUC;
TABLE (AGE INCOME EDUC)*MEAN, GENDER ALL;
RUN;
------------------------------------------------------------
Example without Using PROC TABULATE
PROC MEANS;
VAR AGE INCOME EDUC;
RUN;
PROC MEANS;
BY GENDER;
VAR AGE INCOME EDUC;
RUN;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Describe the function and untility of the most difficult SAS macro that you have written.
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?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
What is the difference between the proc sql and data step?
Mention the validation tools used in SAS?
hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?
for whom is sas data integration studio designed? : Sas-di
What are types of transport files?
Did you used proc test? when?
What is maximum storage capability of SAS?
What function CATX syntax does?
how does sas handle missing values in sort order? : Sas programming
how does sas handle missing values in procs? : Sas programming
what is program data vector? : Sas-administrator