What is the basic syntax of a sas program?
No Answer is Posted For this Question
Be the First to Post Answer
what is program data vector? : Sas-administrator
How to read multiple excel sheets from a single excel file at once????
7 Answers HCL, Verinon Technology Solutions,
where will go the observations that were deleted by delete statement?
What are the new features included in the new version of SAS Programming Language?
What is the difference between an informat and a format. Name three informats or formats.
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1/3; if x=.3333 then put ‘fraction’; run;
Give some examples where proc report’s defaults are same as proc print’s defaults?
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
How to create a permanent sas data set?
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.
In the flow of DATA step processing, what is the first action in a typical DATA Step?