SlideShare une entreprise Scribd logo
1  sur  34
Introduction to..




           www.rvmfinishingschool.com
        Email: info@rvmfinishingschool.com
       Phone: (+91) 7416809654, 9550812082
                                www.rvmfinishingschool.com
Agenda
 Introduction to SAS??
 Why SAS
 Application of SAS
 Data Driven in SAS
 SAS Interface
 Sample SAS Program




                      www.rvmfinishingschool.com
Target Audience
This course is designed for :-

   Those who want to learn to write SAS programs to accomplish typical data-
    processing tasks.

   Those who want to ADD on new skills to their CV.

   Those who want to become SAS Certified.

   Those who are planning to move ABROAD, as knowledge of SAS are in great
    demand in foreign countries.

   SAS Base course is a prerequisite to many other SAS Advance courses.




                                              www.rvmfinishingschool.com
SAS History
 •   Statistical Analysis System
 •   Developed by Jim Goodnight and
     John Shall in1970 at N.C.
     University
 •   Initially Developed for Agricultural
     Research
 •   SAS Institute founded in 1976
 •   98 of world’s top 100 company in
     Fortune 500 use SASwww.rvmfinishingschool.com
SAS ??
SAS (pronounced "sass")
"statistical analysis system,“ began at
  North Carolina State University.

“SAS is a combination of a statistical
  package,
a data – base management system, and
a high level programming language”




                         www.rvmfinishingschool.com
What Can SAS Do?
 Read and write almost any data
  format!
 Powerful data handling language
 Excellent data cleansing functions
 Countless options for output (print,
  HTML, excel, PDF etc.)
 Interact with multiple host systems



                        www.rvmfinishingschool.com
Need For SAS ?
In today’s world we have large chunks of
  data in business and various sectors
  which needs to be maintained and this
  data seems to be unmanageable .

To maintain data in a presentable format
 also where we can analyze and
 modify this data is important.

This is where SAS comes to rescue.
                       www.rvmfinishingschool.com
Role of SAS in Various Industries




HEALTHCARE &             FINANCIAL            RETAIL                   TELECOM
PHARMACY                 SERVICES             - Customer               -Optimize
- Clinical Data          - BANKING            Intelligence             Network, Services
Integration              -Capital Market      -Performance             and IT Resources
-Drug Development        -Sales & Marketing   Management               -Customer
-Sales & Marketing       SAS Used For         -Operations              Revenue
SAS Used For             -Reporting           SAS Used For             SAS Used For
- Statistical Analysis   -Forecasting         - Market Analysis        -Customer
-Clinical Research       -Data Mining         -Product                 Management
-Reporting               -Predictive          Management               - Statistical
-Forecasting             Modeling             -Reporting               Analysis
-Data Mining             -Financial           -Forecasting             - Product
                         Research             -Data Mining             Management
                                                                       -Reporting
                                                                       -Forecasting
                                                                       -Data Mining


                                                   www.rvmfinishingschool.com
What is difference between SAS tool and other
 statistical tools.
Why SAS is so popular?

There is a lot of difference between SAS and other tools.
  SAS is a tool which is a combination of three basic features.
  1) It is a reporting tool.
  2) It is a ETL (Extraction ,Transformation, Load) tool and
  3) It is also a forecasting tool.
  whereas the tools other than SAS like
  - consists of the first feature. eg: BUSINESS OBJECTS,
  COGNOS.

   - consists of the second feature.eg: INFORMATICA.



  No other tool has the power of forecasting feature. Hence SAS
  is used in mostly Clinical trials and healthcare industry.
                                       www.rvmfinishingschool.com
SAS in Pharmacy
SAS in Clinical Trials

“Clinical Trial is a Method to determine if a new drug or
  treatment will work on disease or will it be beneficial to
  patients”

Clinical trials produces huge volume of data
Manual computation is error prone and time consuming



Solution is Statistical software!! SAS
Why SAS Used!!
 SAS Recommended by FDA(Food and Drug
  Administration )
 SAS is Robust tool for reporting and Analysis
 SAS available in various Platform and produce High customized
  reports.
                                      www.rvmfinishingschool.com
SAS in Finance
More than 3,100 financial institutions
worldwide – including 98 percent of
banks in the FORTUNE Global
500® – use SAS to maximize
profitability, manage risk, achieve
greater shareholder value and gain a
clear competitive advantage.




                        www.rvmfinishingschool.com
Data Driven in SAS




           www.rvmfinishingschool.com
Base SAS software provides essential tools for the
basic data-driven tasks :


          DATA STEP           PROC STEP




                              www.rvmfinishingschool.com
Accessing Data

you can access data that is stored almost anywhere, whether it is in
a file on your system, or data that is stored another database
system.
In almost any format, including raw data, SAS data sets.




   Flat Files(.txt,. CSV)
   RDBMS(oracle,db2,Mysql)




                                         www.rvmfinishingschool.com
Managing Data

After you have accessed your data, you can use the SAS
programming language to manipulate it.

Format your data ,create variables (columns), use operators to
evaluate data values ,use functions to create and recode data
values, subset data, perform conditional processing,




                                    www.rvmfinishingschool.com
Reporting procedures in SAS
       PROC REPORT
       PROC PRINT
       PROC TABULATE




                              www.rvmfinishingschool.com
www.rvmfinishingschool.com
SAS User Interface




           www.rvmfinishingschool.com
SAS User Interface



                 Log Window


Explorer
Window
           Editor Window




               Output Window (not shown)



                                 www.rvmfinishingschool.com
Editor Window



           The Editor Window contains SAS
           programs




                        www.rvmfinishingschool.com
SAS Log window

                 The Log Window contains a
                 record
                 of all commands submitted to
                 SAS and shows errors in the
                 commands




                   www.rvmfinishingschool.com
Output Window



     The Output Window contains output
     based on SAS programs submitted in the
     Editor Window




                            www.rvmfinishingschool.com
Libraries Folder


                        Data sets that
        Library
                        have been created in SAS
        Folder
                        through SAS
                        programs




    Work is default
    SAS Library




                      www.rvmfinishingschool.com
SAS Program Structure




             www.rvmfinishingschool.com
SAS Program Structure
SAS Program consist of two basic
  steps:
 Data Step
 Proc step
1. DATA steps:
   It creates and modifies SAS data sets.
Begins with DATA statement
We can use data steps to …
 Enter data into SAS data sets
 Compute Values
 Check or correct data
 Produce new data sets
                            www.rvmfinishingschool.com
2. PROC (Procedure) step:

   Starts with proc statement
   Performs specific analysis or functions
   Produce results and reports

Note: To execute SAS Statement need to specify
   RUN command.




                               www.rvmfinishingschool.com
First SAS Program…
Data dataset_name;
 X1 = 1;
 X2 =3;
 Y =x1+x2;
Run;

Proc print data = dataset_name;
Run;


                       www.rvmfinishingschool.com
Sas program output




                 www.rvmfinishingschool.com
Structure of SAS Table
  Excel    SAS
 Table    Dataset
 Rows     Obseration
 Column   Variables




                  www.rvmfinishingschool.com
The core of SAS System lies in the Base SAS
 Software.
Base SAS software which is the software
 product that you will learn to use.




                         www.rvmfinishingschool.com
Why should become SAS Certified
 The SAS Global Certification Program provides you
  validity to your SAS software skills and let you earn
  industry recognition for your knowledge. With a
  professional certification from SAS you will set yourself
  apart from the competition today by earning the only
  globally-recognized credential endorsed by SAS.
 SAS (Statistical analysis system), SAS is a powerful
  statistical package that runs on many platforms,
  including Windows and UNIX. The world's fastest and
  powerful statistical package for data analysis. It
  comprises multi engine architecture for better data
  management and reporting. SAS training will prepare
  students for rewarding and very well paying career as
  SAS analyst, programmer, developer or consultant.
                                   www.rvmfinishingschool.com
Value of SAS knowledge for the individuals
   Increases your career opportunities and marketability.
   Enhances your credibility as a technical professional.
   Enhances your knowledge of SAS software.
   SAS Consultants are highly paid, get quick promotions,
    their Job is secured WORLDWIDE.
   60,000 - 70,000 SAS Analyst and programmer will be
    required in the next couple of years
   SAS Consultants are highly paid, get quick promotions,
    their Job is secured WORLDWIDE.
   List of companies currently hiring in SAS -- > HSBC, HP,
    Accenture , Novartis , WIPRO,TCS,IBM India, Hewitt, Bank
    Of America, Ranbaxy,Cipla, Dunnhumpy, Infosys, United
    Health Group and list is expand tremendously.

                                    www.rvmfinishingschool.com
Course Description
 SAS Course consists of:-
 Lecture notes.
 Presentation.
 Projects.
 Hundreds of real life assignments plus mock test related to
  topics covered.
 Students can Practice in the Lab the concepts and clarify
  with teachers.
 This foundation course focuses on the following key areas:
  reading raw data files and SAS data sets and writing the
  results to SAS data sets; subsetting data; combining
  multiple SAS files; creating SAS variables and recoding
  data values; and creating listing and summary reports for
  more details you can download the broacher.
                                    www.rvmfinishingschool.com
Thank you for visit
For more information you can contact us @
Website: www.rvmfinishingschool.com
Email: info@rvmfinishingschool.com
      amrutha@rvmfinishingschool.com
Address:
Royal Cottage,
Raj Bhawan Road,
Somajiguda
Hyderabad- 500 082
Ph:(+91) 9550812082,7416809654

                             www.rvmfinishingschool.com

Contenu connexe

Tendances

CDISC SDTM Domain Presentation
CDISC SDTM Domain PresentationCDISC SDTM Domain Presentation
CDISC SDTM Domain PresentationAnkur Sharma
 
Who art & med dra
Who art & med draWho art & med dra
Who art & med draPlessan Joy
 
Various statistical software's in data analysis.
Various statistical software's in data analysis.Various statistical software's in data analysis.
Various statistical software's in data analysis.SelvaMani69
 
R programming language
R programming languageR programming language
R programming languageKeerti Verma
 
SDTM (Study Data Tabulation Model)
SDTM (Study Data Tabulation Model)SDTM (Study Data Tabulation Model)
SDTM (Study Data Tabulation Model)SWAROOP KUMAR K
 
CLINICAL STUDY REPORT - IN-TEXT TABLES, TABLES FIGURES AND GRAPHS, PATIENT AN...
CLINICAL STUDY REPORT - IN-TEXT TABLES, TABLES FIGURES AND GRAPHS, PATIENT AN...CLINICAL STUDY REPORT - IN-TEXT TABLES, TABLES FIGURES AND GRAPHS, PATIENT AN...
CLINICAL STUDY REPORT - IN-TEXT TABLES, TABLES FIGURES AND GRAPHS, PATIENT AN...Angelo Tinazzi
 
STATISTICAL METHODS FOR PHARMACOVIGILANCE
STATISTICAL METHODS FOR PHARMACOVIGILANCESTATISTICAL METHODS FOR PHARMACOVIGILANCE
STATISTICAL METHODS FOR PHARMACOVIGILANCESanju Kaladharan
 
SDTM - Adverse Events Vs. Clinical Events
SDTM - Adverse Events Vs. Clinical EventsSDTM - Adverse Events Vs. Clinical Events
SDTM - Adverse Events Vs. Clinical EventsVijayaraghava Karpurapu
 
A Roadmap for SAS Programmers to Clinical Statistical Programming
A Roadmap for SAS Programmers to Clinical Statistical ProgrammingA Roadmap for SAS Programmers to Clinical Statistical Programming
A Roadmap for SAS Programmers to Clinical Statistical ProgrammingMohammad Majharul Alam
 
SDTM modelling: from study protocol to SDTM-compliant datasets
SDTM modelling: from study protocol to SDTM-compliant datasets SDTM modelling: from study protocol to SDTM-compliant datasets
SDTM modelling: from study protocol to SDTM-compliant datasets Angelo Tinazzi
 
Clinical Data Management Process Overview_Katalyst HLS
Clinical Data Management Process Overview_Katalyst HLSClinical Data Management Process Overview_Katalyst HLS
Clinical Data Management Process Overview_Katalyst HLSKatalyst HLS
 
Medical Dictionary for Regulatory Activities (MedDRA)
Medical Dictionary for Regulatory Activities (MedDRA)Medical Dictionary for Regulatory Activities (MedDRA)
Medical Dictionary for Regulatory Activities (MedDRA)SMS MEDICAL COLLEGE
 
Aggregate Reporting_Pharmacovigilance_Katalyst HLS
Aggregate Reporting_Pharmacovigilance_Katalyst HLSAggregate Reporting_Pharmacovigilance_Katalyst HLS
Aggregate Reporting_Pharmacovigilance_Katalyst HLSKatalyst HLS
 
Clinical Data Management
Clinical Data ManagementClinical Data Management
Clinical Data ManagementDABBETA DIVYA
 

Tendances (20)

CDISC SDTM Domain Presentation
CDISC SDTM Domain PresentationCDISC SDTM Domain Presentation
CDISC SDTM Domain Presentation
 
Clinical sas training overview
Clinical sas training overviewClinical sas training overview
Clinical sas training overview
 
INTRODUCTION TO SAS
INTRODUCTION TO SASINTRODUCTION TO SAS
INTRODUCTION TO SAS
 
Who art & med dra
Who art & med draWho art & med dra
Who art & med dra
 
Various statistical software's in data analysis.
Various statistical software's in data analysis.Various statistical software's in data analysis.
Various statistical software's in data analysis.
 
Application of spss usha (1)
Application of spss usha (1)Application of spss usha (1)
Application of spss usha (1)
 
R programming language
R programming languageR programming language
R programming language
 
Sas Presentation
Sas PresentationSas Presentation
Sas Presentation
 
SDTM (Study Data Tabulation Model)
SDTM (Study Data Tabulation Model)SDTM (Study Data Tabulation Model)
SDTM (Study Data Tabulation Model)
 
CLINICAL STUDY REPORT - IN-TEXT TABLES, TABLES FIGURES AND GRAPHS, PATIENT AN...
CLINICAL STUDY REPORT - IN-TEXT TABLES, TABLES FIGURES AND GRAPHS, PATIENT AN...CLINICAL STUDY REPORT - IN-TEXT TABLES, TABLES FIGURES AND GRAPHS, PATIENT AN...
CLINICAL STUDY REPORT - IN-TEXT TABLES, TABLES FIGURES AND GRAPHS, PATIENT AN...
 
SDTM Fnal Detail Training
SDTM Fnal Detail TrainingSDTM Fnal Detail Training
SDTM Fnal Detail Training
 
STATISTICAL METHODS FOR PHARMACOVIGILANCE
STATISTICAL METHODS FOR PHARMACOVIGILANCESTATISTICAL METHODS FOR PHARMACOVIGILANCE
STATISTICAL METHODS FOR PHARMACOVIGILANCE
 
ADaM - Where Do I Start?
ADaM - Where Do I Start?ADaM - Where Do I Start?
ADaM - Where Do I Start?
 
SDTM - Adverse Events Vs. Clinical Events
SDTM - Adverse Events Vs. Clinical EventsSDTM - Adverse Events Vs. Clinical Events
SDTM - Adverse Events Vs. Clinical Events
 
A Roadmap for SAS Programmers to Clinical Statistical Programming
A Roadmap for SAS Programmers to Clinical Statistical ProgrammingA Roadmap for SAS Programmers to Clinical Statistical Programming
A Roadmap for SAS Programmers to Clinical Statistical Programming
 
SDTM modelling: from study protocol to SDTM-compliant datasets
SDTM modelling: from study protocol to SDTM-compliant datasets SDTM modelling: from study protocol to SDTM-compliant datasets
SDTM modelling: from study protocol to SDTM-compliant datasets
 
Clinical Data Management Process Overview_Katalyst HLS
Clinical Data Management Process Overview_Katalyst HLSClinical Data Management Process Overview_Katalyst HLS
Clinical Data Management Process Overview_Katalyst HLS
 
Medical Dictionary for Regulatory Activities (MedDRA)
Medical Dictionary for Regulatory Activities (MedDRA)Medical Dictionary for Regulatory Activities (MedDRA)
Medical Dictionary for Regulatory Activities (MedDRA)
 
Aggregate Reporting_Pharmacovigilance_Katalyst HLS
Aggregate Reporting_Pharmacovigilance_Katalyst HLSAggregate Reporting_Pharmacovigilance_Katalyst HLS
Aggregate Reporting_Pharmacovigilance_Katalyst HLS
 
Clinical Data Management
Clinical Data ManagementClinical Data Management
Clinical Data Management
 

Similaire à Sas demo

SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...
SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...
SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...Edureka!
 
Clinical SAS Certification Guide- Aspire Techsoft.pdf
Clinical SAS Certification Guide- Aspire Techsoft.pdfClinical SAS Certification Guide- Aspire Techsoft.pdf
Clinical SAS Certification Guide- Aspire Techsoft.pdfAspire Techsoft Academy
 
Clinical SAS Training by Aspire Techsoft
Clinical SAS Training by Aspire TechsoftClinical SAS Training by Aspire Techsoft
Clinical SAS Training by Aspire TechsoftAspire Techsoft Academy
 
SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...
SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...
SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...Aspire Techsoft Academy
 
Sas training institute in hyderabad
Sas training institute in hyderabadSas training institute in hyderabad
Sas training institute in hyderabadAccuprosys
 
SAS Tutorials For Beginners | SAS Training | SAS Tutorial For Data Analysis |...
SAS Tutorials For Beginners | SAS Training | SAS Tutorial For Data Analysis |...SAS Tutorials For Beginners | SAS Training | SAS Tutorial For Data Analysis |...
SAS Tutorials For Beginners | SAS Training | SAS Tutorial For Data Analysis |...Edureka!
 
SAS Programming For Beginners | SAS Programming Tutorial | SAS Tutorial | SAS...
SAS Programming For Beginners | SAS Programming Tutorial | SAS Tutorial | SAS...SAS Programming For Beginners | SAS Programming Tutorial | SAS Tutorial | SAS...
SAS Programming For Beginners | SAS Programming Tutorial | SAS Tutorial | SAS...Edureka!
 
BHASKAR_KOTA_SAS_Certified_Developer
BHASKAR_KOTA_SAS_Certified_DeveloperBHASKAR_KOTA_SAS_Certified_Developer
BHASKAR_KOTA_SAS_Certified_DeveloperBHASKAR Kota
 
SAP BW vs Teradat; A White Paper
SAP BW vs Teradat; A White PaperSAP BW vs Teradat; A White Paper
SAP BW vs Teradat; A White PaperVipul Neema
 
Kaushal Patel_Resume
Kaushal Patel_ResumeKaushal Patel_Resume
Kaushal Patel_ResumeKaushal Patel
 
Maximizing supply-chain efficiency with HP Business Availability Center for S...
Maximizing supply-chain efficiency with HP Business Availability Center for S...Maximizing supply-chain efficiency with HP Business Availability Center for S...
Maximizing supply-chain efficiency with HP Business Availability Center for S...Andrew Cornwall
 
SAS for Banking and Financial Analytics: Which certification is best for Fina...
SAS for Banking and Financial Analytics: Which certification is best for Fina...SAS for Banking and Financial Analytics: Which certification is best for Fina...
SAS for Banking and Financial Analytics: Which certification is best for Fina...Aspire Techsoft Academy
 
SAP Career Maker site
SAP Career Maker site SAP Career Maker site
SAP Career Maker site aakil1
 

Similaire à Sas demo (20)

SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...
SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...
SAS Training | SAS Tutorials For Beginners | SAS Programming | SAS Online Tra...
 
Clinical SAS Certification Guide- Aspire Techsoft.pdf
Clinical SAS Certification Guide- Aspire Techsoft.pdfClinical SAS Certification Guide- Aspire Techsoft.pdf
Clinical SAS Certification Guide- Aspire Techsoft.pdf
 
Clinical SAS Training by Aspire Techsoft
Clinical SAS Training by Aspire TechsoftClinical SAS Training by Aspire Techsoft
Clinical SAS Training by Aspire Techsoft
 
SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...
SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...
SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...
 
Sas training institute in hyderabad
Sas training institute in hyderabadSas training institute in hyderabad
Sas training institute in hyderabad
 
Sas base programmer
Sas base programmerSas base programmer
Sas base programmer
 
SAS Tutorials For Beginners | SAS Training | SAS Tutorial For Data Analysis |...
SAS Tutorials For Beginners | SAS Training | SAS Tutorial For Data Analysis |...SAS Tutorials For Beginners | SAS Training | SAS Tutorial For Data Analysis |...
SAS Tutorials For Beginners | SAS Training | SAS Tutorial For Data Analysis |...
 
SAS Programming For Beginners | SAS Programming Tutorial | SAS Tutorial | SAS...
SAS Programming For Beginners | SAS Programming Tutorial | SAS Tutorial | SAS...SAS Programming For Beginners | SAS Programming Tutorial | SAS Tutorial | SAS...
SAS Programming For Beginners | SAS Programming Tutorial | SAS Tutorial | SAS...
 
SAS Certified Visual Analytics | Aspire
SAS Certified Visual Analytics | AspireSAS Certified Visual Analytics | Aspire
SAS Certified Visual Analytics | Aspire
 
BHASKAR_KOTA_SAS_Certified_Developer
BHASKAR_KOTA_SAS_Certified_DeveloperBHASKAR_KOTA_SAS_Certified_Developer
BHASKAR_KOTA_SAS_Certified_Developer
 
Business Visualization: Dashboard & Storyboarding
Business Visualization: Dashboard & StoryboardingBusiness Visualization: Dashboard & Storyboarding
Business Visualization: Dashboard & Storyboarding
 
SAP BW vs Teradat; A White Paper
SAP BW vs Teradat; A White PaperSAP BW vs Teradat; A White Paper
SAP BW vs Teradat; A White Paper
 
Resume_Rahim
Resume_RahimResume_Rahim
Resume_Rahim
 
Kaushal Patel_Resume
Kaushal Patel_ResumeKaushal Patel_Resume
Kaushal Patel_Resume
 
Maximizing supply-chain efficiency with HP Business Availability Center for S...
Maximizing supply-chain efficiency with HP Business Availability Center for S...Maximizing supply-chain efficiency with HP Business Availability Center for S...
Maximizing supply-chain efficiency with HP Business Availability Center for S...
 
Resume
ResumeResume
Resume
 
SAS for Banking and Financial Analytics: Which certification is best for Fina...
SAS for Banking and Financial Analytics: Which certification is best for Fina...SAS for Banking and Financial Analytics: Which certification is best for Fina...
SAS for Banking and Financial Analytics: Which certification is best for Fina...
 
Harshad sas
Harshad sasHarshad sas
Harshad sas
 
Sap
SapSap
Sap
 
SAP Career Maker site
SAP Career Maker site SAP Career Maker site
SAP Career Maker site
 

Plus de rvmfinishingschool (17)

Brexit
BrexitBrexit
Brexit
 
Referendum
ReferendumReferendum
Referendum
 
Harshad Mehta
Harshad MehtaHarshad Mehta
Harshad Mehta
 
Satyam Scam
Satyam ScamSatyam Scam
Satyam Scam
 
IT bubble Crash
IT bubble CrashIT bubble Crash
IT bubble Crash
 
US Sub Prime Crisis
US Sub Prime CrisisUS Sub Prime Crisis
US Sub Prime Crisis
 
Euro Crisis
Euro CrisisEuro Crisis
Euro Crisis
 
Index of Industrial Production
Index of Industrial ProductionIndex of Industrial Production
Index of Industrial Production
 
Indian Manufacturing Sector
Indian Manufacturing SectorIndian Manufacturing Sector
Indian Manufacturing Sector
 
Indian Agriculture sector
Indian Agriculture sectorIndian Agriculture sector
Indian Agriculture sector
 
Indian Pharma Industry
Indian Pharma IndustryIndian Pharma Industry
Indian Pharma Industry
 
Fatp presentation
Fatp presentationFatp presentation
Fatp presentation
 
ITSS
ITSSITSS
ITSS
 
Auto mobiles
Auto mobilesAuto mobiles
Auto mobiles
 
Pharma industry
Pharma industryPharma industry
Pharma industry
 
Indian Aviation Industry
Indian Aviation IndustryIndian Aviation Industry
Indian Aviation Industry
 
Retail industry
Retail industryRetail industry
Retail industry
 

Dernier

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 

Dernier (20)

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 

Sas demo

  • 1. Introduction to.. www.rvmfinishingschool.com Email: info@rvmfinishingschool.com Phone: (+91) 7416809654, 9550812082 www.rvmfinishingschool.com
  • 2. Agenda  Introduction to SAS??  Why SAS  Application of SAS  Data Driven in SAS  SAS Interface  Sample SAS Program www.rvmfinishingschool.com
  • 3. Target Audience This course is designed for :-  Those who want to learn to write SAS programs to accomplish typical data- processing tasks.  Those who want to ADD on new skills to their CV.  Those who want to become SAS Certified.  Those who are planning to move ABROAD, as knowledge of SAS are in great demand in foreign countries.  SAS Base course is a prerequisite to many other SAS Advance courses. www.rvmfinishingschool.com
  • 4. SAS History • Statistical Analysis System • Developed by Jim Goodnight and John Shall in1970 at N.C. University • Initially Developed for Agricultural Research • SAS Institute founded in 1976 • 98 of world’s top 100 company in Fortune 500 use SASwww.rvmfinishingschool.com
  • 5. SAS ?? SAS (pronounced "sass") "statistical analysis system,“ began at North Carolina State University. “SAS is a combination of a statistical package, a data – base management system, and a high level programming language” www.rvmfinishingschool.com
  • 6. What Can SAS Do?  Read and write almost any data format!  Powerful data handling language  Excellent data cleansing functions  Countless options for output (print, HTML, excel, PDF etc.)  Interact with multiple host systems www.rvmfinishingschool.com
  • 7. Need For SAS ? In today’s world we have large chunks of data in business and various sectors which needs to be maintained and this data seems to be unmanageable . To maintain data in a presentable format also where we can analyze and modify this data is important. This is where SAS comes to rescue. www.rvmfinishingschool.com
  • 8. Role of SAS in Various Industries HEALTHCARE & FINANCIAL RETAIL TELECOM PHARMACY SERVICES - Customer -Optimize - Clinical Data - BANKING Intelligence Network, Services Integration -Capital Market -Performance and IT Resources -Drug Development -Sales & Marketing Management -Customer -Sales & Marketing SAS Used For -Operations Revenue SAS Used For -Reporting SAS Used For SAS Used For - Statistical Analysis -Forecasting - Market Analysis -Customer -Clinical Research -Data Mining -Product Management -Reporting -Predictive Management - Statistical -Forecasting Modeling -Reporting Analysis -Data Mining -Financial -Forecasting - Product Research -Data Mining Management -Reporting -Forecasting -Data Mining www.rvmfinishingschool.com
  • 9. What is difference between SAS tool and other statistical tools. Why SAS is so popular? There is a lot of difference between SAS and other tools. SAS is a tool which is a combination of three basic features. 1) It is a reporting tool. 2) It is a ETL (Extraction ,Transformation, Load) tool and 3) It is also a forecasting tool. whereas the tools other than SAS like - consists of the first feature. eg: BUSINESS OBJECTS, COGNOS. - consists of the second feature.eg: INFORMATICA. No other tool has the power of forecasting feature. Hence SAS is used in mostly Clinical trials and healthcare industry. www.rvmfinishingschool.com
  • 10. SAS in Pharmacy SAS in Clinical Trials “Clinical Trial is a Method to determine if a new drug or treatment will work on disease or will it be beneficial to patients” Clinical trials produces huge volume of data Manual computation is error prone and time consuming Solution is Statistical software!! SAS Why SAS Used!!  SAS Recommended by FDA(Food and Drug Administration )  SAS is Robust tool for reporting and Analysis  SAS available in various Platform and produce High customized reports. www.rvmfinishingschool.com
  • 11. SAS in Finance More than 3,100 financial institutions worldwide – including 98 percent of banks in the FORTUNE Global 500® – use SAS to maximize profitability, manage risk, achieve greater shareholder value and gain a clear competitive advantage. www.rvmfinishingschool.com
  • 12. Data Driven in SAS www.rvmfinishingschool.com
  • 13. Base SAS software provides essential tools for the basic data-driven tasks : DATA STEP PROC STEP www.rvmfinishingschool.com
  • 14. Accessing Data you can access data that is stored almost anywhere, whether it is in a file on your system, or data that is stored another database system. In almost any format, including raw data, SAS data sets. Flat Files(.txt,. CSV) RDBMS(oracle,db2,Mysql) www.rvmfinishingschool.com
  • 15. Managing Data After you have accessed your data, you can use the SAS programming language to manipulate it. Format your data ,create variables (columns), use operators to evaluate data values ,use functions to create and recode data values, subset data, perform conditional processing, www.rvmfinishingschool.com
  • 16. Reporting procedures in SAS PROC REPORT PROC PRINT PROC TABULATE www.rvmfinishingschool.com
  • 18. SAS User Interface www.rvmfinishingschool.com
  • 19. SAS User Interface Log Window Explorer Window Editor Window Output Window (not shown) www.rvmfinishingschool.com
  • 20. Editor Window The Editor Window contains SAS programs www.rvmfinishingschool.com
  • 21. SAS Log window The Log Window contains a record of all commands submitted to SAS and shows errors in the commands www.rvmfinishingschool.com
  • 22. Output Window The Output Window contains output based on SAS programs submitted in the Editor Window www.rvmfinishingschool.com
  • 23. Libraries Folder Data sets that Library have been created in SAS Folder through SAS programs Work is default SAS Library www.rvmfinishingschool.com
  • 24. SAS Program Structure www.rvmfinishingschool.com
  • 25. SAS Program Structure SAS Program consist of two basic steps:  Data Step  Proc step 1. DATA steps: It creates and modifies SAS data sets. Begins with DATA statement We can use data steps to …  Enter data into SAS data sets  Compute Values  Check or correct data  Produce new data sets www.rvmfinishingschool.com
  • 26. 2. PROC (Procedure) step:  Starts with proc statement  Performs specific analysis or functions  Produce results and reports Note: To execute SAS Statement need to specify RUN command. www.rvmfinishingschool.com
  • 27. First SAS Program… Data dataset_name; X1 = 1; X2 =3; Y =x1+x2; Run; Proc print data = dataset_name; Run; www.rvmfinishingschool.com
  • 28. Sas program output www.rvmfinishingschool.com
  • 29. Structure of SAS Table Excel SAS  Table Dataset  Rows Obseration  Column Variables www.rvmfinishingschool.com
  • 30. The core of SAS System lies in the Base SAS Software. Base SAS software which is the software product that you will learn to use. www.rvmfinishingschool.com
  • 31. Why should become SAS Certified  The SAS Global Certification Program provides you validity to your SAS software skills and let you earn industry recognition for your knowledge. With a professional certification from SAS you will set yourself apart from the competition today by earning the only globally-recognized credential endorsed by SAS.  SAS (Statistical analysis system), SAS is a powerful statistical package that runs on many platforms, including Windows and UNIX. The world's fastest and powerful statistical package for data analysis. It comprises multi engine architecture for better data management and reporting. SAS training will prepare students for rewarding and very well paying career as SAS analyst, programmer, developer or consultant. www.rvmfinishingschool.com
  • 32. Value of SAS knowledge for the individuals  Increases your career opportunities and marketability.  Enhances your credibility as a technical professional.  Enhances your knowledge of SAS software.  SAS Consultants are highly paid, get quick promotions, their Job is secured WORLDWIDE.  60,000 - 70,000 SAS Analyst and programmer will be required in the next couple of years  SAS Consultants are highly paid, get quick promotions, their Job is secured WORLDWIDE.  List of companies currently hiring in SAS -- > HSBC, HP, Accenture , Novartis , WIPRO,TCS,IBM India, Hewitt, Bank Of America, Ranbaxy,Cipla, Dunnhumpy, Infosys, United Health Group and list is expand tremendously. www.rvmfinishingschool.com
  • 33. Course Description  SAS Course consists of:-  Lecture notes.  Presentation.  Projects.  Hundreds of real life assignments plus mock test related to topics covered.  Students can Practice in the Lab the concepts and clarify with teachers.  This foundation course focuses on the following key areas: reading raw data files and SAS data sets and writing the results to SAS data sets; subsetting data; combining multiple SAS files; creating SAS variables and recoding data values; and creating listing and summary reports for more details you can download the broacher. www.rvmfinishingschool.com
  • 34. Thank you for visit For more information you can contact us @ Website: www.rvmfinishingschool.com Email: info@rvmfinishingschool.com amrutha@rvmfinishingschool.com Address: Royal Cottage, Raj Bhawan Road, Somajiguda Hyderabad- 500 082 Ph:(+91) 9550812082,7416809654 www.rvmfinishingschool.com