Answer Posted / chutke amresh
The SAS System, originally Statistical Analysis System, is
an integrated system of software products provided by the
SAS Institute that enables the programmer to perform:
1. data entry, retrieval, management, and mining
2. report writing and graphics
3. statistical and mathematical analysis
4. business planning, forecasting, and decision support
5. operations research and project management
6. quality improvement
7. applications development
8. warehousing (extract, transform, load)
Is This Answer Correct ? | 15 Yes | 0 No |
Post New Answer View All Answers
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
how will you location sas platform applications available from web browser? : Sas-bi
What are the table names in oracle database...?
For clinical entire study how many tables will create approx?
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
Describe the function and untility of the most difficult SAS macro that you have written.
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
What is the difference between reading data from an external file and reading data from an existing data set?
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
what is null hypothesis? why do you consider that?
Mention the validation tools used in SAS?
What do you know about sas data set?
What are the data types that sas contain?
what are sas/access and sas/connect? : Sas programming
what is transformation in sas data integration? : Sas-di