SAS System ?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / swathi
The SAS System is a Comprehensive and Flexible Information
Delivery System that supports Data Access, Data
Management,Data Analysis and Data Representation.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / t v r kumar
sas is a set of solutions for enterprise wide business
users for performing report writing and graphics
statistical and mathematical analysis
forecasting and decision making
applications development
quality improvement
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / sastechies
The SAS BI System is an integrated suite of software for
enterprise-wide information delivery... Applications of the
SAS System include executive information systems; data
entry, retrieval, and management; report writing and
graphics; statistical and mathematical analysis; business
planning, forecasting, and decision support; operations
research and project management; statistical quality
improvement; computer performance evaluation; and
applications development.
Read more: http://sastechies.blogspot.com/2009/11/what-is-
sas.html
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / saravanan
SAS is a "Statistical Analysis System" .It have three types
BASE/SAS=To use of reporting the data
SAS/STAT= To use of analyzing the data
SAS/GRAPH=To use showing the analyzing data in the graphs(or)plots.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is pdv? how it is related to input buffer in sas?
describe how to adjust the performance of data integrator? : Sas-di
What is the difference between proportion and average?
libname deepak 'C:\SAS Files'; proc format; invalue convert 'A+' = 100 'A' = 96 'A-' = 92 'B+' = 88 'B' = 84 'B-' = 80 'C+' = 76 'C' = 72 'F' = 65; data deepak.grades; input ID $3. Grade convert.; *format Grade convert. ; datalines; 001 A- 002 B+ 003 F 004 C+ 005 A ; proc print data = deepak.grades; run; I get the following output Obs ID Grade 1 001 . 2 002 . 3 003 . 4 004 . 5 005 . I don’t understand why Grade shows up as a missing value. Everything seems fine, including ID $3. Now, in case I use ID : $3. Or use column input, I get the desired output. Kindly help Deepak
What is highest missing value for numeric?
Name statements that function at both compile and execution time.
Hello Friends, am new to this forum and am not good at sas progarmming. please can any one of you send me couple of sample large sample SAS Jobs which can you use 200 MB of data and other sas job upto 25GB of data. am doing a performance testing on our legacy systems and new upgraded system. I would really appreciate if you can do me this favor Thank you Priya
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set?
What do the mod and int function do? : Sas programming
What would be the value of month at the end of data step execution and how many observations would be there?
i have a null dataset with 20 variables. i want to upload the variables which contain name like a or k or anything in another dataset.how can we create the dataset?
What is the significance of the ‘OF’ in X=SUM (OF a1-a4, a6, a9);?