What Is Sas (Statistical Analysis System) ?

You might also like

Download as ppt, pdf, or txt
Download as ppt, pdf, or txt
You are on page 1of 7

What is SAS (STATISTICAL ANALYSIS SYSTEM)?

SAS is computer software for working with data.

Or

SAS is a programmable integrated system of software for accessing, managing,


analyzing, and reporting data.
SAS is a computer software system that provides all the tools needed for data
analysis:

Reading data: Flexible input techniques


Transformations: Programming language with statistical and mathematical functions
Manipulation: Sorting, concatenating, and Merging
Maintenance: storing, documenting, updating, and editing
Report writing: Printing information using pre-written procedures or customized programs
Graphics: charts, plots, maps and slides
Data reduction and summarization: descriptive statistics
Statistical analysis: from simple cross tabulations to
complex multivariate techniques
SAS Processing

All SAS jobs are a sequence of SAS steps. There are only two kinds of
SAS steps:

DATA steps are usually used to create SAS data sets, but can be used to
produce reports.

PROCEDURE steps analyze or process SAS data sets(generate xec


reports and graphs, edit data, sort date) and, in some Controls E
cases to create SAS data sets. of SAS Job

SAS
Supervisor

DATA PROCEDURE
Step Step
SAS Execution Flow:

Raw Data

Data
Processor

SAS Data
Set

Applications
Procedures

Reports
SAS Execution Flow: Continued……

DATA MYLIB.CLASS ;
Raw Input Data INPUT NAME $ 1-12
SEX 12
AGE 23-24
HT 15-16
WT 18-20
;
Output ;

PROC PRINT; SAS Data Set


Report
DATA=CLASS;
http://www.rhoworld.com/pdf/ch399.pdf
http://www.public.iastate.edu/~mervyn/stat479/trans/tr1_4.pdf

You might also like