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 / poojavaibhav

hi,

in Proc step if you want to create a dataset then use
output out= statement.

answer above given is correct.

Thanks

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is by-group processing?

574


How do you add a number to a macro variable? : sas-macro

545


what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake

1915


Which command is used to save logs in the external file?

564


How do you debug and test your SAS programs?

1046






What are the special input delimiters used in SAS?

654


What is the purpose of _character_ and _numeric_?

586


What is the function of output statement in a SAS Program?

609


What is the use of the %include statement?

685


do you prefer proc report or proc tabulate? Why? : Sas programming

572


how sas deals with business intelligence? : Sas-bi

582


How would you define the end of a macro?

698


please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??

1661


what is sas application server? : Sas-di

537


What is the difference between the proc sql and data step?

662