What are the new features included in the new version of SAS Programming Language?
Name statements that are execution only.
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
How the date 04oct1994 is stored in SAS,not only give the answer explain in brief?
Of all your work, where have you been the most successful?
What is the difference between %put and symbolgen? : sas-macro
Under what circumstances would you code a SELECT construct instead of IF statements?
what techniques and/or procs do you use for tables? : Sas programming
Why Info School? BUILD YOUR CAREER WITH RIGHT GUIDANCE AND SUPPORT
Describe 5 ways to do a “table lookup” in SAS?
What is the order of evaluation of the comparison && logical && relational operators:?
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.
How can I remove header from output data set?