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
How to create list output for cross-tabulations in proc freq?
what is data integration? : Sas-di
what do you mean by data staging area? : Sas-di
explain about various caches available in data integrator? : Sas-di
Approximately what date is represented by the SAS date value of 730?
what are the scrubbing procedures in sas? : Sas programming
Give e an example of..
How to convert a numeric variable to a character variable?
Explain proc sort?
What are the parameters of scan function?
How you can read the variables that you need?
What is the role of sas grid administrator? : sas-grid-administration
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
Explain what is SAS informats?
do you prefer proc report or proc tabulate? Why? : Sas programming