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.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / 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 |
what is the purpose of _error_? : Sas programming
what is option year cuttoff in sas
what are the categories that sas informats are used to the place the data? : Sas-administrator
At compile time when a SAS data set is read, what items are created?
I have a dataset with variables empid and doj how to calculate retirement age?
/*i have the following dataset.*/ data score; input marks ; datalines; 10 20 30 40 50 60 70 80 90 100 ; run; Now i should get the result as sum of 1 to 5 i.e(10+20+30+40+50)=150 and 2 to 6 i.e(20+30+40+50+60)=200 and 3 to 7 i.e(30+40+50+60+70)=250 and so on. how to get it. thanks in advance
What are the best sas programming practices for handling very large datasets? : sas-grid-administration
what is washout period?
How would you identify a macro variable?
how many display types available in sas bi dashboard? : Sas-bi
What is LOGICAL VARIABLES in SAS.And how it can be used..Can anyone support..???
What is a method to debug and test your SAS program?