Mention what are the data types does SAS contain?
No Answer is Posted For this Question
Be the First to Post Answer
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.
What is the work of tranwrd function?
What is LOGICAL VARIABLES in SAS.And how it can be used..Can anyone support..???
What is the difference between the proc sql and data step?
what other SAS features do you use for error trapping and data validation?
how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but it workss if its vijaya raghava but not for raghava perumal.how to do this?
What does P-value signify about the statistical data?
What are the functions which are used for character handling functions?
which stats created by proc means that are not created by proc summary or vice versa?
what is the primary data source for the wrs? : Sas-bi
How we can call macros with in data step? : sas-macro
what is the main difference between rename and label? (don't say that they both perform the same function).