What are the special input delimiters used in SAS?
No Answer is Posted For this Question
Be the First to Post Answer
What are the ways in which macro variables can be created in sas programming?
How would you create multiple observations from a single observation?
Describe the types of SAS programming tasks that you performed like Tables? Listings? Graphics? Ad hoc reports? Other?
what are the benefits of data integration? : Sas-di
How do you debug and test your SAS programs?
You need to perform an analysis on a massive dataset by groups, but are unable to sort the data due to memory constraint. How would you accomplish the task?
how do you debug and test your sas programs? : Sas programming
If you were told to create many records from one record show how you would do this using arrays and with PROC TRANSPOSE?
What do you feel about hardcoding?
What is Tabulate.?Why we use it.? Which type of output we get from Tabulate.?
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 do the SAS log messages "numeric values have been converted to character" mean?