Name statements that function at both compile and execution
time?
Did you used proc test? when?
0 Answers Accenture, Quintiles,
Why is SAS considered self-documenting?
Does SAS ‘Translate’ (compile) or does it ‘Interpret’? Explain.
what kind of variables are collected in AE dataset?
3 Answers Accenture, Quintiles, SAS,
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
Which date function advances a date, time or datetime value by a given interval?
How do I CREATE an external dataset with sas code? I would like to create within a sascode a non-exsistent textfile on the host. So I am not forced to create the file befor filling it.
define table lookup and how may ways it can be done...explian
explain what is factor analysis? : Sas-administrator
wt is a-z and a--z?
Mention how to limit decimal places for the variable using proc means?
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.