SlideShare a Scribd company logo
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

More Related Content

PDF
Introduction to sas
PPTX
Introduction to clinical sas programming
PPTX
Introduction to clinical sas
PPT
Basics Of SAS Programming Language
PPTX
SAS - Statistical Analysis System
PDF
Data management plan (important components and best practices) final v 1.0
PPTX
Clinical Data Management
PDF
Clinical sas training overview
Introduction to sas
Introduction to clinical sas programming
Introduction to clinical sas
Basics Of SAS Programming Language
SAS - Statistical Analysis System
Data management plan (important components and best practices) final v 1.0
Clinical Data Management
Clinical sas training overview

What's hot (20)

PPTX
SAS basics Step by step learning
PPTX
Clinical SAS Programming | SAS Training | Big Data | Hadoop | Business Analyt...
PPT
Clinical Data Management
PPTX
Sas Statistical Analysis System
PPTX
Pharmacovigilance AND HIPAA
PPTX
SAS Clinical Online Training
PDF
Clinical Data Management
PPTX
Clinical data-management-overview
PPTX
Drug safety evaluation in clinical trial
PDF
Introduction to SAS
PDF
Population pharmacokinetics
PDF
Basics of SAS
PPTX
Pharmacokinetic and pharmacodynamic correlation
PPTX
Clinical Data Management Process Overview_Katalyst HLS
PPTX
Pharmacovigilance Process Work Flow - Katalyst HLS
PPTX
Roles and Responsibilities of sponsor, CRO, and investigator
PPT
Data and Safety Monitoring Board - An Overview
PPTX
Designing of clinical study protocol rumana hameed
PPTX
Safety monitoring in clinical trails
SAS basics Step by step learning
Clinical SAS Programming | SAS Training | Big Data | Hadoop | Business Analyt...
Clinical Data Management
Sas Statistical Analysis System
Pharmacovigilance AND HIPAA
SAS Clinical Online Training
Clinical Data Management
Clinical data-management-overview
Drug safety evaluation in clinical trial
Introduction to SAS
Population pharmacokinetics
Basics of SAS
Pharmacokinetic and pharmacodynamic correlation
Clinical Data Management Process Overview_Katalyst HLS
Pharmacovigilance Process Work Flow - Katalyst HLS
Roles and Responsibilities of sponsor, CRO, and investigator
Data and Safety Monitoring Board - An Overview
Designing of clinical study protocol rumana hameed
Safety monitoring in clinical trails
Ad

Similar to Sas demo (20)

PPT
Harshad sas
PDF
What Is SAS | SAS Tutorial For Beginners | SAS Training | SAS Programming | E...
DOC
Sas keyword
PDF
Sharpening Your SAS Skills 1st Edition Sunil Gupta
DOCX
SAS Programming Notes
PDF
Sasbasecontent2
PDF
Ampersand Academy - SAS Course Curriculum
PDF
Top 140+ Advanced SAS Interview Questions and Answers.pdf
PPT
Hechsp 001 Chapter 1
DOCX
Sas training institute in marathahalli bangalore
PDF
How Can I Save Time and Build Trust With My Data Preparation.pdf
PDF
Table of Contents - Practical Business Analytics using SAS
PDF
SAS Online Training
PDF
SAS Online Training
PPT
Whats Hot, Whats Not Skills For Sas® Professionals (Presentation)
PDF
Sas Talk To R Users Group
PPTX
BAS 150 Lesson 1 Lecture
PDF
Elite SAS Training
PDF
Sas language reference concepts
PPT
Sas - Introduction to working under change management
Harshad sas
What Is SAS | SAS Tutorial For Beginners | SAS Training | SAS Programming | E...
Sas keyword
Sharpening Your SAS Skills 1st Edition Sunil Gupta
SAS Programming Notes
Sasbasecontent2
Ampersand Academy - SAS Course Curriculum
Top 140+ Advanced SAS Interview Questions and Answers.pdf
Hechsp 001 Chapter 1
Sas training institute in marathahalli bangalore
How Can I Save Time and Build Trust With My Data Preparation.pdf
Table of Contents - Practical Business Analytics using SAS
SAS Online Training
SAS Online Training
Whats Hot, Whats Not Skills For Sas® Professionals (Presentation)
Sas Talk To R Users Group
BAS 150 Lesson 1 Lecture
Elite SAS Training
Sas language reference concepts
Sas - Introduction to working under change management
Ad

More from rvmfinishingschool (17)

PPTX
PPTX
Referendum
PPTX
Harshad Mehta
PPTX
Satyam Scam
PPTX
IT bubble Crash
PPTX
US Sub Prime Crisis
PPTX
Euro Crisis
PPTX
Index of Industrial Production
PPTX
Indian Manufacturing Sector
PPTX
Indian Agriculture sector
PPTX
Indian Pharma Industry
PPTX
Fatp presentation
PPTX
Auto mobiles
PPTX
Pharma industry
PPTX
Indian Aviation Industry
PDF
Retail industry
Referendum
Harshad Mehta
Satyam Scam
IT bubble Crash
US Sub Prime Crisis
Euro Crisis
Index of Industrial Production
Indian Manufacturing Sector
Indian Agriculture sector
Indian Pharma Industry
Fatp presentation
Auto mobiles
Pharma industry
Indian Aviation Industry
Retail industry

Recently uploaded (20)

PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
Complications of Minimal Access Surgery at WLH
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
RMMM.pdf make it easy to upload and study
PDF
Basic Mud Logging Guide for educational purpose
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
Computing-Curriculum for Schools in Ghana
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
TR - Agricultural Crops Production NC III.pdf
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPTX
PPH.pptx obstetrics and gynecology in nursing
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
01-Introduction-to-Information-Management.pdf
PPTX
GDM (1) (1).pptx small presentation for students
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
O7-L3 Supply Chain Operations - ICLT Program
Complications of Minimal Access Surgery at WLH
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
RMMM.pdf make it easy to upload and study
Basic Mud Logging Guide for educational purpose
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Computing-Curriculum for Schools in Ghana
Pharmacology of Heart Failure /Pharmacotherapy of CHF
TR - Agricultural Crops Production NC III.pdf
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
STATICS OF THE RIGID BODIES Hibbelers.pdf
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPH.pptx obstetrics and gynecology in nursing
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
01-Introduction-to-Information-Management.pdf
GDM (1) (1).pptx small presentation for students
human mycosis Human fungal infections are called human mycosis..pptx
102 student loan defaulters named and shamed – Is someone you know on the list?

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