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 |
How experienced are you with customized reporting and use of Data _Null_ features?
How do handle working under pressure?
proc means? proc sort? proc append? proc freq? proc print? proc content?
calculate the sum of value using only DATA STEP. data count_; input year name $ value; cards; 2006 xxx 10 2007 yyy 12 2006 xxx 20 2008 yyy 15 2007 xxx 15 ; out put should be like this year name T_value ----------------------- 2006 xxx 30 2007 xxx 15 2007 yyy 12 2008 xxx 15
What are MIs reports? what is the use of MIS reports and How can u generate the MIS reports in SAS? If any body know explain with the eg.
2 Answers ABC, ASD Lab, CitiGroup,
what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?
What can you learn from the SAS log when debugging?
what is the basic structure sas administrator? : Sas-administrator
We have a string like this "kannafromsalembut" ,from this i want to get only "fromsal" (but one condition with out using substring function)here we can not use scan because in the given string there is no delimeter? so give ans without out using substring ?
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
What is the command used to find missing values?
when we are using the PROC TRANSPOSE? OBSERVATIONS are repeated then what will happen and what it will show in log window.