There is a river notoriously known for it?s large crocodile
population. With ease, how do you safely cross it?
Answer / anup nair
Correct answer: Simply swim across. All of the crocodiles
are attending the Lion King?s animal conference. This
questions your reasoning ability.
| Is This Answer Correct ? | 3 Yes | 2 No |
What is the order of evaluation of the comparison && logical && relational operators:?
libname deepak 'C:\SAS Files'; proc format; invalue convert 'A+' = 100 'A' = 96 'A-' = 92 'B+' = 88 'B' = 84 'B-' = 80 'C+' = 76 'C' = 72 'F' = 65; data deepak.grades; input ID $3. Grade convert.; *format Grade convert. ; datalines; 001 A- 002 B+ 003 F 004 C+ 005 A ; proc print data = deepak.grades; run; I get the following output Obs ID Grade 1 001 . 2 002 . 3 003 . 4 004 . 5 005 . I don’t understand why Grade shows up as a missing value. Everything seems fine, including ID $3. Now, in case I use ID : $3. Or use column input, I get the desired output. Kindly help Deepak
How to get any kind of data in SAS? Is it possible to take data from notepad in SAS?
What is SAS Information Map Studio and its purpose ?
What is by-group processing?
how to assign a macro value to a variable?
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
Can you execute a macro within a macro? Describe. : sas-macro
I have a SCD Type 2 Dimention for Location In which A Sales Office in Having two Surrogate Keys just because of the change in it's Sales Group. SKey SalesGroup Sales Office BeginDate EndDate 280 SG1 SO1 01APR2000 01APR2010 281 SG2 SO1 02APR2010 31MAR2999 Now while loading the Fact, the Lookup ir returning SKey 280 for records before and after 01APR2010. I am not able to give WHERE condition in the Lookup Properties (TranDate between BeginDate and EndDate). Please help.
In SAS explain which statement does not perform automatic conversions in comparisons?
is there any difference between proc summary and proc means?
Can you excute a macro within a macro? Describe.