Could you please answers for this.
1.Code the tables statement for a single-level (most common)
frequency.
2.Code the tables statement to produce a multi-level
frequency.
Answer Posted / sreenivas
single level
proc ferq data=datasetname;
table var1;
run;
multilevel
proc ferq data=datasetname;
table var1*var2;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
For clinical entire study how many tables will create approx?
Hello Friends, am new to this forum and am not good at sas progarmming. please can any one of you send me couple of sample large sample SAS Jobs which can you use 200 MB of data and other sas job upto 25GB of data. am doing a performance testing on our legacy systems and new upgraded system. I would really appreciate if you can do me this favor Thank you Priya
name some data transformation used in sas di? : Sas-di
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
Describe the ways in which you can create macro variables?
How necessary is it to be creative in your work?
is data integration and etl programming is same? : Sas-di
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
How we can create SAS USER DEFINED CODE?
what is the use of sas management console? : Sas-di
What are the different servers in sas? : sas-grid-administration
Can you execute a macro within a macro? Describe. : sas-macro
describe about metadata object? : Sas-di
what are sas bi dashboard components? : Sas-bi
for what purpose would you use the retain statement? : Sas programming