Mention the category in which sas informats are placed?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different operating system platforms in which we can use sas? : sas-grid-administration
I need to find the numeric field which contains blank in between..Ex:123 456...there is blank in between the 123 456..I need to know if there is any SAS function to find a field.. Please suggest...
how does sas handle missing values in functions? : Sas programming
What SAS statements would you code to read an external raw data file to a DATA step?
what are the categories that sas informats are used to the place the data? : Sas-administrator
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
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.
why is sas considered self-documenting? : Sas programming
I have a dataset with variables empid and doj how to calculate retirement age?
Code the MEANS to produce output to be used later.
Explain how you can debug and test your SAS program?
What is the difference between class statement and by statement in proc means?