do you prefer proc report or proc tabulate? Why? : Sas programming
No Answer is Posted For this Question
Be the First to Post Answer
how will you location sas platform applications available from web browser? : Sas-bi
I have a dataset with variables empid and doj how to calculate retirement age?
Of all your work, where have you been the most successful?
Which is the best place to learn SAS clinicals and Oracle clinical in hyderabad?
Hot to suppress characters from a given string?
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
What is the difference between %local and %global? : sas-macro
How can I remove header from output data set?
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 the difference between Regression and Logistic Regression? Can u explain the Assumptions/Conditions?
what is intially documentation for a sas programmer?
What does the trace option do?