What are exact SAS Base contents..?N what r SAS Tools..?
Answer / pallavi
sas macros
sas datasets
sas import
--> tools : SAS/Access, SAS/EIS...
| Is This Answer Correct ? | 3 Yes | 0 No |
wat is sas? is a package or programming language?
what are input dataset and output dataset options?
for report generation which one you used proc report or data_null_?
3 Answers Accenture, Quintiles,
How would you delete observations with duplicate keys?
how to generate report for 0 observation dataset?
What is run-group processing?
/*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
how many types of MERGE?
What is the difference between SAS functions and procedures?
what can you learn from the sas log when debugging? : Sas programming
Explain the difference between using drop = data set option in set and data statement?
How would you remove a format that has been permanently associated with a variable? ________________