What are the main differences between sas versions 8.2, 9.0,
9.1?
Answers were Sorted based on User's Feedback
Answer / kumaraswamy maduri
All the above answers wrong.
There are many differences but I can tell you few important
differences:
1) Proc Import allows dataset options from V9.
2) Proc Sort allows DUPOUT option from V9.
3) The Character variable length has been increased.
and so on...
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / vinodnagesh
9.1 is latest version
9.0 is middle version
8.2 is old version
| Is This Answer Correct ? | 2 Yes | 6 No |
Answer / mythri
In 8.2 no Array's, in 9.0 we hav array's,
in 9.0 nodup is not available but in 9.1 nodup is available.
| Is This Answer Correct ? | 0 Yes | 8 No |
what is factor analysis? : Sas-administrator
What is substr function?
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
how to do user inputs and command line arguments in sas?
How could you generate test data with no input data?
for report generation which one you used proc report or data_null_?
3 Answers Accenture, Quintiles,
What do you feel about hardcoding?
What is the basic structure of the SAS base program?
diff between nodup rec and ondup key???
The below code we are using for creating more than one macro variables in proc sql using into clause. How we can use same code to create macro variables vara, varb, varc instead of var1, var2, var3.? proc sql noprint; select count(distinct(patient)) into :var1 - :var3 from dataset1 group by trtreg1c ; quit;
what are scrubing procedures in SAS?
Explain what Proc glm does?