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 / 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 |
what is the use of proc contents and proc print in sas? : Sas-administrator
how can u import .csv file in to SAS?tell Syntax?
7 Answers CitiGroup, Franklin Templeton,
what is the difference between proc means and proc summary?
what are input dataset and output dataset options? : Sas programming
what is the use of proc sql?
What would be the value of month at the end of data step execution and how many observations would be there?
If you set a label in the data step and call a proc freq on the data, how do you display the data without the labels and just the variables.
why is the use of Retrive statement and give me with example?
What is the difference between SAS Data step and SAS PROC SQL, and which is better?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
How many data types are there in SAS?
What does P-value signify about the statistical data?