SAS programming language Guide, Meaning , Facts, Information and Description
| Table of contents |
|
2 Base SAS 3 Description of SAS 4 External link |
Overview
The SAS System is an integrated system of software products (provided by the SAS Institute) that enables you to perform:
- data entry, retrieval, and management
- report writing and graphics
- statistical and mathematical analysis
- business planning, forecasting, and decision support
- operations research and project management
- quality improvement
- applications development.
Like other database-oriented fourth-generation programming languages such as SQL or Focus, SAS assumes a default file structure, and automates the process of identifying files to the operating system, opening the input file, reading the next record, opening the output file, writing the next record, and closing the files. This allows the user/programmer to concentrate on the details of working with the data within each record, in effect working almost entirely within an implicit program loop that runs for each record. Other procedures operate on the dataset as a whole, for instance printing or statistical analysis, and merely require the user/programmer to identify the dataset.
Compared to general-purpose programming languages, this structure allows the user/programmer to be less familiar with the technical details of the data and how it is stored, and relatively more familiar with the information contained in the data. This blurs the line between user and programmer, appealing to individuals who fall more into the 'business' or 'research' area and less in the 'information technology' area. This in turn has the double edged result of allowing rapid answers to business or research questions, even ones requring several iterations to get from the initial results to a final answer; but also contributing to the construction of a large body of badly written and impossible to maintain source code.
This is an Article on SAS programming language. Page Contains Information, Facts Details or Explanation Guide About SAS programming language Base SAS
The core of the SAS System is the so called Base SAS Software, which you use to manage your data. With SAS procedures software you analyse and report the data. The Macro facility is a tool for extending and customizing SAS software programs and for reducing text in your programs. The DATA step debugger is a programming tool that helps you find logic problems in DATA step programs. The Output Delivery System (ODS) is a system that delivers output in a variety of easy-to-access formats, such as SAS data sets, listing files, or Hypertext Markup Language (HTML). The SAS windowing environment is an interactive, graphical user interface that enables you to easily run and test your SAS programs.Description of SAS
External link
