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 sas enterprise intelligence architecture? : Sas-bi
how do you want missing values handled? : Sas programming
List down the reasons for choosing sas over other data analytics tools.
I have a dataset concat having a variable a b & c. How to rename a b to e & f?
How can you create a macro variable with in data step? : sas-macro
What is a pdv and what are its functions?
how are numeric and character missing values represented internally? : Sas programming
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
For what purposes have you used sas macros? : sas-macro
Explain append procedure?
How can I remove header from output data set?
What are the parameters of scan function?
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
What is a put statement?
For what purpose would you use the RETAIN statement?