Sas 2
Sas 2
2
SAS is a BI software product from the SAS
Institute, Cary, NC
People refer SAS to as “Statistical Analytical
System”….
It’s a Business Intelligence tool which can give
3
Know how SAS is used in Industries?
4
5
Source: Business Week…
6
All Pharmaceutical
Companies involved American Express
in Clinical trials. Citigroup
FDA Bank of America
GlaxoSmithKline Discover Financials
Merck ETS
Sanofi-Aventis JPMorgan Chase
Pfizer Wells Fargo
Quintiles CRO Freddie Mac
Aetna Fannie Mae
AstraZeneca Marriot etc…
7
A whole span of career
opportunities exists with
the help of SAS.
◦ Business Analyst
◦ Risk Analyst
◦ Clinical Statisticians
◦ Data warehouse
specialists
◦ PM’s etc…
An excellent opportunity
to get into the functional
stream rather than
Technical stream.
8
If you have NOT done any Statistical Analysis in school then
you might have NOT got a chance to learn about SAS…
“Little SAS” book or the SAS Online tutor are good places to
start with …
9
Next we’ll have a quick demonstration of the SAS v9.1.3
Interface…
10
DATA steps typically create or modify SAS data sets, but they can also be used
to produce custom-designed reports. For example, you can use DATA steps to
PROC (procedure) steps typically analyze and process data in the form of a
SAS data set, and they sometimes create SAS data sets that contain the results
of the procedure. PROC steps control a library of prewritten routines
(procedures) that perform tasks on SAS data sets, such as listing, sorting, and
summarizing data. For example, you can use PROC steps to
◦ print a report
◦ produce descriptive statistics
◦ create a tabular report
◦ produce plots and charts.
11
Data numbers; Start of a Datastep
X1=1; Assigning values to x1
x2=2; x2
Run; End the datastep
12
13