Differentiate between sas functions and sas procedures.
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between floor and ceil functions in sas? : Sas-administrator
What does PROC print, and PROC contents do?
How could i automate the code in the scenario:Every month one new data set will be created for that perticular month transaction list.Now i would like to update the data in the source table by appending every month data automatically. jan---set jan; feb---set jan feb; mar---set jan mar;
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 is data _null_?
how are numeric and character missing values represented internally? : Sas programming
Name any two sas spawners? : sas-grid-administration
what can you learn from the sas log when debugging? : Sas programming
Code a PROC MEANS that shows both summed and averaged output of the data.
what is cummaltive frequency,and varience in proc unviarte
Under what circumstances would you code a SELECT construct instead of IF statements?
What is the purpose of the trailing and How would you use them?