Enlist the functions performed by sas.
No Answer is Posted For this Question
Be the First to Post Answer
explain about data integrator metadata reports? : Sas-di
Name statements that are recognized at compile time only?
Did you used proc test? when?
0 Answers Accenture, Quintiles,
Identify statements whose placement in the DATA step is critical?
what is SAS/Graph?
What SAS statements would you code to read an external raw data file to a DATA step?
/*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 are the different ways of merging two datasets.name atleast 4.
What would the following datastep do? Data _null_; Set Dist end=eof; Call Symput("xx"!!left(put(_n_,2.)),&dimension); If EOF then Call Symput('numrows',left(put(_n_,2.))); Run; dimension is a macro variable that is being passed here
List out some key concept of SAS
Differentiate between format and informat? : sas-grid-administration
what are all the default values getting in PROC MEANS...???