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.
2 5855
Describe the ways in which you can create a macro variable?
what is hierarchy flattening? : Sas-di
What are the data types does SAS contain?
what is the difference between nodup and nodupkey options? : Sas programming
how to change the execute of macro
In proc transpose and data step with arrays which one you pick?
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
What is the role of sas grid administrator? : sas-grid-administration
Differentiate between sas functions and sas procedures.
Explain input and put function?
AE datasets names? how many types?
How would you define the end of a macro? : sas-macro
which date functions advances a date time or date/time value by a given interval? : Sas programming
Where do you use proc means over proc freq?