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 |
Can you continue to write code while the rest of the people on the floor where you work have a noisy party to which you were not invited?
how do you read binary data in sas?
In proc transpose and data step with arrays which one you pick?
0 Answers Accenture, Quintiles,
SAS System ?
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
How would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable?
How do you put a giraffe into the refrigerator?
How can you put a "trace" in your program?
What are the five ways to do a table lookup in sas? : sas-grid-administration
Do you know the features of sas?
how do i get last 10obs from a dataset when we don't know about the number of obsevations in that dataset?
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.