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
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
What is the difference between the proc sql and data step?
Name and describe few sas character functions that are used for data cleaning in brief.
How do you delete duplicate observations in sas?
How do dates work in SAS data?
explain the use of % includes a statement in sas? : Sas-administrator
What is the difference between class statement and by statement in proc means?
What is the role of sas grid administrator? : sas-grid-administration
How do you specify the number of iterations and specific condition within a single do loop?
How to create list output for cross-tabulations in proc freq?
What are the limitations for memory allocation for SAS variables
Mention what is PROC in SAS?
how does sas handle missing values in formats? : Sas programming
What is the use of the %include statement?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?