I use NOCUM/NOPERCENT option in the tables statement like this
Proc freq data = deepak;
tables x y /nocum nopercent;
run;
Here I get nopercent and nocum in the output only for
variables x and y. How do i do it for all variables?
Deepak
Answer Posted / deepak
use
tables _all_ /options;
if u want to print one way analysis of all variables with the specified options
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How can sas program be validated?
name several ways to achieve efficiency in your program? : Sas programming
What is the difference between nodupkey and nodup options?
What is the difference between one to one merge and match merge? Give an example.
Differentiate input and infile.
What are the default statistics that proc means produce?
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
what is the purpose of _error_? : Sas programming
do you need to know if there are any missing values? : Sas programming
describe how to adjust the performance of data integrator? : Sas-di
Why and when do you use proc sql?
What is a macro routine?
What is the maximum and minimum length of macro variable
How do you specify the number of iterations and specific condition within a single do loop?
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming