what is lifetest
Answer / vishnu
lifetest is a procedure which is used to do the survival analysis.
| Is This Answer Correct ? | 7 Yes | 0 No |
How do you convert basic cube to transaction cube and transaction cube to basic cube?
What SAS statements would you code to read an external raw data file to a DATA step?
what is intially documentation for a sas programmer?
What is the good sas programming practices for processing large data sets?
what do you mean by data staging area? : Sas-di
How to sort in descending order?
How to merge the data using merge statement and proc format? Is the result is same ?
What is the difference between class statement and by statement in proc means?
Why Info School? BUILD YOUR CAREER WITH RIGHT GUIDANCE AND SUPPORT
what is sas database server? : Sas-di
code the tables statement for a single level frequency?
data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.