Mention few ways with which a “table lookup’ is done in sas programming.
Answer / vineetha
Match-merging
Proc SQL
Arrays
Hash object
Direct access
Format tables
| Is This Answer Correct ? | 0 Yes | 0 No |
Which statement does not perform automatic conversions in comparisons?
We have a string like this "kannafromsalembut" ,from this i want to get only "fromsal" (but one condition with out using substring function)here we can not use scan because in the given string there is no delimeter? so give ans without out using substring ?
Code a PROC MEANS that shows both summed and averaged output of the data.
What is the difference between reading data from an external file and reading data from an existing data set?
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 Enterprise Guide?what is the use of it?
How to Rename Library?
What are the criticality that you have faced during your project in SAS?
What is SAS informats?
Can you execute macro within another macro? : sas-macro
How can sas program be validated?
what has been your most common programming mistake? : Sas programming