How to test the debugging in sas?
No Answer is Posted For this Question
Be the First to Post Answer
How we can create SAS USER DEFINED CODE?
Describe the function and utility of the most difficult SAS macro that you have written?
Are you involved in writing the inferential analysis plan? Tables specifications?
What statement do you code to tell SAS that it is to write to an external file? What statement do you code to write the record to the file?
how to display duplicated observations in a data using base sas.
13 Answers HCL, TCS,
How do you read in the variables that you need?
/*i have the following dataset.*/ data score; input marks ; datalines; 10 20 30 40 50 60 70 80 90 100 ; run; Now i should get the result as sum of 1 to 5 i.e(10+20+30+40+50)=150 and 2 to 6 i.e(20+30+40+50+60)=200 and 3 to 7 i.e(30+40+50+60+70)=250 and so on. how to get it. thanks in advance
what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake
What is the difference between %local and %global?
describe about joins? briefly?
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
Have you ever used the SAS Debugger?