What are the advantages of using sas?
No Answer is Posted For this Question
Be the First to Post Answer
What do you know about sas and what we do? : sas-grid-administration
i have a null dataset with 10 variables; i want to print only name of the varibales in log window and also output window.how can we do this one?
PROC SQL always ends with QUIT statement.Why cant you use RUN in PROQ SQL ?
How would you combine 3 or more tables with different structures?
Diff between proc sql merge and join?
Enlist the syntax rules followed in sas statements.
how do i get last 10obs from a dataset when we don't know about the number of obsevations in that dataset?
How would you generate 1000 observations from a normal distribution with a mean of 50 and standard deviation of 20. How would you use PROC CHART to look at the distribution? Describe the shape of the distribution.
What is by-group processing?
What are the features of SAS?
If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to do?
/*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