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.

Answer Posted / neeraj upadhyay

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;
output out = xyz PLCORR ;
RUN;

Is This Answer Correct ?    10 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are some differences between proc summary and proc means? : Sas programming

505


What are the features of SAS?

575


name the scheduler for scheduling job and explain the scheduler? : Sas-di

592


What are the different versions of sas that you have used until now? : sas-grid-administration

730


What is the general format of function in sas? : sas-grid-administration

565






what is SAS OPTIMIZATION?

1813


What is substr function?

624


How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro

578


For what purpose would you use the RETAIN statement?

1042


Explain the purpose of retain statement.

601


what is the function of catx syntax? : Sas-administrator

646


why is a stop statement needed for the point=option on a set statement? : Sas programming

583


How does proc sql work?

613


Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com

1577


Mention the category in which sas informats are placed?

624