What is PROC in SAS?
No Answer is Posted For this Question
Be the First to Post Answer
do you prefer proc report or proc tabulate? Why? : Sas programming
it will become easy if uuu provide website linkssss and list of consultanciessssss
how to add distinctly var variable values ex.. Data a; input var; datalines; 0 1 2 3 -1 -2 -3 ; run; adding all +ve value in one varibale n do the same for -ve too
Why double trailing @@ is used in input statement?
· What are some good SAS programming practices for processing very large data sets?
Why Info School? BUILD YOUR CAREER WITH RIGHT GUIDANCE AND SUPPORT
Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables.
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
what is the difference between SET and MERGE?
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
What is the role of unrestrictive users? : sas-grid-administration
What is the use of the %include statement?