List down the reasons for choosing sas over other data analytics tools.
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between using drop = data set option in data statement and set statement?
what is sas application server? : Sas-di
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
What are the difference between ceil and floor functions in sas?
"What is the difference between proc sort nodup and proc sort nodupkey?"
Mention what is SAS data set?
If you could design your ideal job, what would it look like?
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
If a variable contains letters or special characters, can it be numeric data type?
If a variable contains only numbers, can it be a character data type?
What is _n_?
What is proc sql pass through facility?