SlideShare ist ein Scribd-Unternehmen logo
1 von 30
www.edureka.co/base-sas
5 Best Practices in DevOps CultureAnalytics with SAS
www.edureka.co/base-sas
Know your instructor
 Hi, my name is Rakesh. And I am your trainer for tonight.
 I have done my Masters in Statistics from IIT, Kanpur.
 I am BASE SAS certified.
 I have been training professionals and students for last 6.5 years.
www.edureka.co/base-sas
What will you learn today?
 Introduction to Analytics
 Why there is so much hype around SAS?
 Top 5 Features of SAS
 Types of SAS Datasets
 How SAS Language works!
 Reading Data into SAS
 Plotting graphs to understand the data
www.edureka.co/base-sas
Introduction to Analytics
www.edureka.co/base-sas
Data Analyst – Five Core Skills
www.edureka.co/base-sas
What is SAS and why all the hype around it?
‱ SAS (pronounced ‘sass’) once stood for "statistical analysis system."
‱ It began at North Carolina State University as a project to analyze agricultural research.
‱ Demand for such software capabilities began to grow, and SAS was founded in 1976 to help
customers in all sorts of industries – from pharmaceutical companies and banks to academic and
governmental entities.
‱ SAS – both the software and the company – thrived throughout the next few decades.
Development of the software attained new heights in the industry because it could run across all
platforms, using the multivendor architecture for which it is known today
Jim Goodnight
www.edureka.co/base-sas
Why SAS?
Is a mature development platform and has rich product documentation
Has great certification programs which carry a lot of weight in market
Has awesome product support
Been there since long and has been deployed in production of many mission critical jobs (like
churning out Pharma regulatory report and Clinical Trial analysis)
Is the first choice for Fraud Detection, Data Analytics involving huge amounts of data for any big
Enterprise
Is an undisputed Market leader in Data Analytics and Modeling (latest Gartner, Forrester Research)
www.edureka.co/base-sas
Top 5 features of SAS
www.edureka.co/base-sas
SAS Datasets
For SAS to read the dataset, it must be in a special form called SAS dataset
Variables & Observations: SAS dataset looks like a spreadsheet, where Variables are the columns
and Observations are the rows
Size of SAS datasets: Earlier, SAS datasets could contain 32,767 variables. So, RELAX !!
www.edureka.co/base-sas
SAS Datasets (Contd.)
Names must be less
than or equal to 32
characters in length
Rule 1
Names must start
with a letter or an
underscore ( _ )
Rule 2
Names contain only
letters, numbers or
underscore(s)
Rule 3
SAS names are
CASE-INSENSITIVE!
Rule 4
NAMING CONVENTION:
Rules for SAS names of Variables and Datasets:
SAS Dataset contains
Data
Documentation on data: name,
date of creation, information
about each variable etc.
www.edureka.co/base-sas
SAS Datasets (Contd.)
Observation
Variables
Example of a SAS dataset
ï‚źID, HT & WT are Numeric Variables
ï‚źName is a Character Variable
ï‚źCharacter Variables, if blank, are represented by a space
ï‚źNumeric Variables, if blank, are represented by a ‘.’
www.edureka.co/base-sas
How SAS Language Works?
SAS won’t check for LOGICAL ERRORS! So, be Logical yourself
!!!
www.edureka.co/base-sas
Hands-On:
‱ How SAS looks!
‱ Importing Data into SAS
‱ Plotting graphs for understanding data
www.edureka.co/base-sas
How SAS looks!
SAS has N=3 sub windows:- 1. Editor, 2. Log & 3. Output
Below is the SAS Interface. This
is how SAS main starting page
looks like.
www.edureka.co/base-sas
How SAS looks! - LIBRARIES
Primarily, SAS has N=2 libraries – 1. Temporary Library & 2. Permanent Library .Library:- Place to store Data Set.
WHAT IS TEMPORARY & PERMANENT LIBRARY?
Temporary Library:- It is the by-default library of SAS, where data is stored temporarily. The Data stored in Temp.
Lib. will be erased off as and when we close the SAS session. “Work” is the TEMPORARY LIBRARY.
Permanent Library:- These are user defined libraries in SAS. This is created by us and data is not erased off when
we end the session. Later we will learn “How to create Permanent Lib.”
WHY DO WE NEED A LIBRARY?
We need a library to store our Data Sets. Here there is a very simple analogy between our day-to-day life and SAS
– Normally we have Files stored in Folders or Directories . Similarly, we have Data Sets and Libraries in SAS.
Temporary Library stores all current activities on RAM for fast processing.
And , Permanent Library is used to store Data Set for future use also.
www.edureka.co/base-sas
Now you will learn to
Create a Library in SAS.
www.edureka.co/base-sas
How SAS looks! - LIBRARIES
SAS
TEMPORARY
LIBRARY
WORK IS THE TEMPORARY LIBRARY
www.edureka.co/base-sas
Reading Data in SAS
How to import / read data from Text file or CSV file?
We use “Infile” statement to read CSV file
What is Text file or CSV file?
Comma-Separated Values (CSV) files.
This is data usually created in Notepad.
Vey useful in terms of Social media Analytics.
Like – Twitter or Facebook.
1.
2.
3.
What id “dsd” ?
Delimiter Sensitive Data. It performs several functions. First, it changes the default delimiter from a blank to a
comma. Next, if there are two delimiters in a row, it assumes there is a missing value between. Finally, if
character values are placed in quotes (single or double quotes), the quotes are stripped from the value. That’s a
lot of mileage for just three letters!
www.edureka.co/base-sas
Now we will learn how to
input data using ‘Datalines’.
www.edureka.co/base-sas
Reading Data in SAS
Why do we use “Datalines” in SAS?
Suppose you want to write a short test program in SAS. Instead of having to place your data in an
external file, you can place your lines of data directly in your SAS program by using a DATALINES
statement.
www.edureka.co/base-sas
Reading Data in SAS
We don’t use
semicolon
after every
line.
We can also use Datalines and Infile together to read data.
 We also use “DLM” to
define any other delimiter
other than space(default
delimiter).
 DLM defines 200 other
delimiters.
www.edureka.co/base-sas
DATALINES statement used to be
called the CARDS statement.
www.edureka.co/base-sas
Plotting graphs to understand the data
/*--SGPLOT proc statement--*/
proc sgplot data=SASHELP.IRIS;
/*--TITLE and FOOTNOTE--*/
title 'Iris Graph';
footnote2 j=l 'Did you like it!!!';
/*--Scatter plot settings--*/
scatter x=SepalLength y=SepalWidth / group=Species
transparency=0.0
name='Scatter';
/*--X Axis--*/
xaxis grid;
/*--Y Axis--*/
yaxis grid;
run;
www.edureka.co/base-sas
Using Data & Set statement
 When do we use DATA statement?
When you write a DATA statement such as:
data test;
SAS creates a temporary SAS data set called Test.
 When do we use SET statement?
SET statement is used for reading observations from a SAS data set instead of lines from a raw data file.
Difference b/w DATA and SET statement:-
There is a difference, however. Each time you read a line of data from a raw data file, the variables being read from the raw data file or
created by assignment statements in the DATA step are initialized to a missing value during each iteration of the DATA step. Variables that are
read from SAS data sets are not set to missing values during each iteration of the DATA step—they are said to be retained.
www.edureka.co/base-sas
Is SAS a proficient tool?
www.edureka.co/base-sas
Gartner’s Magic Quadrants
Gartner recognizes SAS as a
Leader positioned highest on the
ability to Execute axis in the Magic
Quadrant for Advanced Analytics
www.edureka.co/base-sas
Various Job Profiles in SAS
SAS
Predictive
Modeler
www.edureka.co/base-sas
Job Trends
Data Analytics Job Trends SAS vs R – Job Trends
www.edureka.co/base-sas
Batch Details
Valid till 17th June, 11:30 PM PDT / 18th June, 12:00 PM IST
Course Features
 Online Live Classes : 24 Hours
 Assignments : 20 Hours
 Project : 20 Hours
http://bit.ly/1VhU7fp
Career Booster Offer - FLAT 15% OFF!
18
June
Sat & Sun (4 Weekends)
IST: 7:00 PM - 10:00 PM
PDT: 6:30 AM - 9:30 AM
INR 18,695
$ 357
INR 21,995
$ 420
www.edureka.co/base-sas
Thank You
Questions/Queries/Feedback
Recording and presentation will be made available to you within 24 hours

Weitere Àhnliche Inhalte

Was ist angesagt?

datastage training | datastage online training | datastage training videos | ...
datastage training | datastage online training | datastage training videos | ...datastage training | datastage online training | datastage training videos | ...
datastage training | datastage online training | datastage training videos | ...Nancy Thomas
 
SAS basics Step by step learning
SAS basics Step by step learningSAS basics Step by step learning
SAS basics Step by step learningVenkata Reddy Konasani
 
Oracle Autonomous Database for Developers
Oracle Autonomous Database for DevelopersOracle Autonomous Database for Developers
Oracle Autonomous Database for DevelopersTĂ©rcio Costa
 
From Raw Data to Analytics with No ETL
From Raw Data to Analytics with No ETLFrom Raw Data to Analytics with No ETL
From Raw Data to Analytics with No ETLCloudera, Inc.
 
Statistics and Indexes Internals
Statistics and Indexes InternalsStatistics and Indexes Internals
Statistics and Indexes InternalsAntonios Chatzipavlis
 
Big Data: SQL on Hadoop from IBM
Big Data:  SQL on Hadoop from IBM Big Data:  SQL on Hadoop from IBM
Big Data: SQL on Hadoop from IBM Cynthia Saracco
 
Building Data Warehouse in SQL Server
Building Data Warehouse in SQL ServerBuilding Data Warehouse in SQL Server
Building Data Warehouse in SQL ServerAntonios Chatzipavlis
 
The High Performance DBA Optimizing Databases For High Performance
The High Performance DBA Optimizing Databases For High PerformanceThe High Performance DBA Optimizing Databases For High Performance
The High Performance DBA Optimizing Databases For High PerformanceEmbarcadero Technologies
 
Top 20 FAQs on the Autonomous Database
Top 20 FAQs on the Autonomous DatabaseTop 20 FAQs on the Autonomous Database
Top 20 FAQs on the Autonomous DatabaseSandesh Rao
 
Datastage free tutorial
Datastage free tutorialDatastage free tutorial
Datastage free tutorialtekslate1
 
Hadoop-DS: Which SQL-on-Hadoop Rules the Herd
Hadoop-DS: Which SQL-on-Hadoop Rules the HerdHadoop-DS: Which SQL-on-Hadoop Rules the Herd
Hadoop-DS: Which SQL-on-Hadoop Rules the HerdIBM Analytics
 
MySQL Sharding: Tools and Best Practices for Horizontal Scaling
MySQL Sharding: Tools and Best Practices for Horizontal ScalingMySQL Sharding: Tools and Best Practices for Horizontal Scaling
MySQL Sharding: Tools and Best Practices for Horizontal ScalingMats Kindahl
 
What's new in SQL Server 2016
What's new in SQL Server 2016What's new in SQL Server 2016
What's new in SQL Server 2016James Serra
 
Talend Components | tMap, tJoin, tFileList, tInputFileDelimited | Talend Onli...
Talend Components | tMap, tJoin, tFileList, tInputFileDelimited | Talend Onli...Talend Components | tMap, tJoin, tFileList, tInputFileDelimited | Talend Onli...
Talend Components | tMap, tJoin, tFileList, tInputFileDelimited | Talend Onli...Edureka!
 
Sap hana platform sps 11 introduces new sap hana hadoop integration features
Sap hana platform sps 11 introduces new sap hana hadoop integration featuresSap hana platform sps 11 introduces new sap hana hadoop integration features
Sap hana platform sps 11 introduces new sap hana hadoop integration featuresAvinash Kumar Gautam
 
Big SQL 3.0 - Toronto Meetup -- May 2014
Big SQL 3.0 - Toronto Meetup -- May 2014Big SQL 3.0 - Toronto Meetup -- May 2014
Big SQL 3.0 - Toronto Meetup -- May 2014Nicolas Morales
 

Was ist angesagt? (17)

datastage training | datastage online training | datastage training videos | ...
datastage training | datastage online training | datastage training videos | ...datastage training | datastage online training | datastage training videos | ...
datastage training | datastage online training | datastage training videos | ...
 
SAS basics Step by step learning
SAS basics Step by step learningSAS basics Step by step learning
SAS basics Step by step learning
 
Oracle Autonomous Database for Developers
Oracle Autonomous Database for DevelopersOracle Autonomous Database for Developers
Oracle Autonomous Database for Developers
 
Exploring sql server 2016 bi
Exploring sql server 2016 biExploring sql server 2016 bi
Exploring sql server 2016 bi
 
From Raw Data to Analytics with No ETL
From Raw Data to Analytics with No ETLFrom Raw Data to Analytics with No ETL
From Raw Data to Analytics with No ETL
 
Statistics and Indexes Internals
Statistics and Indexes InternalsStatistics and Indexes Internals
Statistics and Indexes Internals
 
Big Data: SQL on Hadoop from IBM
Big Data:  SQL on Hadoop from IBM Big Data:  SQL on Hadoop from IBM
Big Data: SQL on Hadoop from IBM
 
Building Data Warehouse in SQL Server
Building Data Warehouse in SQL ServerBuilding Data Warehouse in SQL Server
Building Data Warehouse in SQL Server
 
The High Performance DBA Optimizing Databases For High Performance
The High Performance DBA Optimizing Databases For High PerformanceThe High Performance DBA Optimizing Databases For High Performance
The High Performance DBA Optimizing Databases For High Performance
 
Top 20 FAQs on the Autonomous Database
Top 20 FAQs on the Autonomous DatabaseTop 20 FAQs on the Autonomous Database
Top 20 FAQs on the Autonomous Database
 
Datastage free tutorial
Datastage free tutorialDatastage free tutorial
Datastage free tutorial
 
Hadoop-DS: Which SQL-on-Hadoop Rules the Herd
Hadoop-DS: Which SQL-on-Hadoop Rules the HerdHadoop-DS: Which SQL-on-Hadoop Rules the Herd
Hadoop-DS: Which SQL-on-Hadoop Rules the Herd
 
MySQL Sharding: Tools and Best Practices for Horizontal Scaling
MySQL Sharding: Tools and Best Practices for Horizontal ScalingMySQL Sharding: Tools and Best Practices for Horizontal Scaling
MySQL Sharding: Tools and Best Practices for Horizontal Scaling
 
What's new in SQL Server 2016
What's new in SQL Server 2016What's new in SQL Server 2016
What's new in SQL Server 2016
 
Talend Components | tMap, tJoin, tFileList, tInputFileDelimited | Talend Onli...
Talend Components | tMap, tJoin, tFileList, tInputFileDelimited | Talend Onli...Talend Components | tMap, tJoin, tFileList, tInputFileDelimited | Talend Onli...
Talend Components | tMap, tJoin, tFileList, tInputFileDelimited | Talend Onli...
 
Sap hana platform sps 11 introduces new sap hana hadoop integration features
Sap hana platform sps 11 introduces new sap hana hadoop integration featuresSap hana platform sps 11 introduces new sap hana hadoop integration features
Sap hana platform sps 11 introduces new sap hana hadoop integration features
 
Big SQL 3.0 - Toronto Meetup -- May 2014
Big SQL 3.0 - Toronto Meetup -- May 2014Big SQL 3.0 - Toronto Meetup -- May 2014
Big SQL 3.0 - Toronto Meetup -- May 2014
 

Andere mochten auch

BAS 250 Lecture 1
BAS 250 Lecture 1BAS 250 Lecture 1
BAS 250 Lecture 1Wake Tech BAS
 
BAS 250 Lecture 8
BAS 250 Lecture 8BAS 250 Lecture 8
BAS 250 Lecture 8Wake Tech BAS
 
BAS 150 Lesson 2 Lecture
BAS 150 Lesson 2 Lecture BAS 150 Lesson 2 Lecture
BAS 150 Lesson 2 Lecture Wake Tech BAS
 
BAS 150 Lesson 1 Lecture
BAS 150 Lesson 1 LectureBAS 150 Lesson 1 Lecture
BAS 150 Lesson 1 LectureWake Tech BAS
 
BAS 250 Lecture 2
BAS 250 Lecture 2BAS 250 Lecture 2
BAS 250 Lecture 2Wake Tech BAS
 
Base 9.1 preparation guide
Base 9.1 preparation guideBase 9.1 preparation guide
Base 9.1 preparation guideimaduddin91
 
Learning SAS by Example -A Programmer’s Guide by Ron CodySolution
Learning SAS by Example -A Programmer’s Guide by Ron CodySolutionLearning SAS by Example -A Programmer’s Guide by Ron CodySolution
Learning SAS by Example -A Programmer’s Guide by Ron CodySolutionVibeesh CS
 
Module 3 Adapative Customer Experience Final
Module 3 Adapative Customer Experience FinalModule 3 Adapative Customer Experience Final
Module 3 Adapative Customer Experience FinalVivastream
 
How Philips develops an online shopping strategy using social analytics
How Philips develops an online shopping strategy using social analyticsHow Philips develops an online shopping strategy using social analytics
How Philips develops an online shopping strategy using social analyticsFloris Regouin
 
Can SAS be #1 in Social Media?
Can SAS be #1 in Social Media?Can SAS be #1 in Social Media?
Can SAS be #1 in Social Media?Wayne Sutton
 
How Simplify360 helps in Providing Banking Solutions
How Simplify360 helps in Providing Banking Solutions How Simplify360 helps in Providing Banking Solutions
How Simplify360 helps in Providing Banking Solutions Simplify360
 
Inside Simplify360 Social Marketing Suite
Inside Simplify360 Social Marketing SuiteInside Simplify360 Social Marketing Suite
Inside Simplify360 Social Marketing SuiteSimplify360
 
How is it to work @ Simplify360 - An inside story
How is it to work @ Simplify360 - An inside storyHow is it to work @ Simplify360 - An inside story
How is it to work @ Simplify360 - An inside storySimplify360
 
Manage your Online Reputation with Simplify360
Manage your Online Reputation with Simplify360Manage your Online Reputation with Simplify360
Manage your Online Reputation with Simplify360Simplify360
 
SAS Data Management for Analytics: potenzia le tue analisi e sostieni l’innov...
SAS Data Management for Analytics: potenzia le tue analisi e sostieni l’innov...SAS Data Management for Analytics: potenzia le tue analisi e sostieni l’innov...
SAS Data Management for Analytics: potenzia le tue analisi e sostieni l’innov...SAS Italy
 
Social Media Command Center - Simplify360
Social Media Command Center - Simplify360Social Media Command Center - Simplify360
Social Media Command Center - Simplify360Simplify360
 
What is the Value of SAS Analytics?
What is the Value of SAS Analytics?What is the Value of SAS Analytics?
What is the Value of SAS Analytics?SAS Canada
 
Social media analytics and measurement tool - Simplify360
Social media analytics and measurement tool  - Simplify360Social media analytics and measurement tool  - Simplify360
Social media analytics and measurement tool - Simplify360Simplify360
 
Sas visual-analytics-startup-guide
Sas visual-analytics-startup-guideSas visual-analytics-startup-guide
Sas visual-analytics-startup-guideCMR WORLD TECH
 
How SAS Makes Social Media Practical for Employees
How SAS Makes Social Media Practical for EmployeesHow SAS Makes Social Media Practical for Employees
How SAS Makes Social Media Practical for EmployeesDynamic Signal
 

Andere mochten auch (20)

BAS 250 Lecture 1
BAS 250 Lecture 1BAS 250 Lecture 1
BAS 250 Lecture 1
 
BAS 250 Lecture 8
BAS 250 Lecture 8BAS 250 Lecture 8
BAS 250 Lecture 8
 
BAS 150 Lesson 2 Lecture
BAS 150 Lesson 2 Lecture BAS 150 Lesson 2 Lecture
BAS 150 Lesson 2 Lecture
 
BAS 150 Lesson 1 Lecture
BAS 150 Lesson 1 LectureBAS 150 Lesson 1 Lecture
BAS 150 Lesson 1 Lecture
 
BAS 250 Lecture 2
BAS 250 Lecture 2BAS 250 Lecture 2
BAS 250 Lecture 2
 
Base 9.1 preparation guide
Base 9.1 preparation guideBase 9.1 preparation guide
Base 9.1 preparation guide
 
Learning SAS by Example -A Programmer’s Guide by Ron CodySolution
Learning SAS by Example -A Programmer’s Guide by Ron CodySolutionLearning SAS by Example -A Programmer’s Guide by Ron CodySolution
Learning SAS by Example -A Programmer’s Guide by Ron CodySolution
 
Module 3 Adapative Customer Experience Final
Module 3 Adapative Customer Experience FinalModule 3 Adapative Customer Experience Final
Module 3 Adapative Customer Experience Final
 
How Philips develops an online shopping strategy using social analytics
How Philips develops an online shopping strategy using social analyticsHow Philips develops an online shopping strategy using social analytics
How Philips develops an online shopping strategy using social analytics
 
Can SAS be #1 in Social Media?
Can SAS be #1 in Social Media?Can SAS be #1 in Social Media?
Can SAS be #1 in Social Media?
 
How Simplify360 helps in Providing Banking Solutions
How Simplify360 helps in Providing Banking Solutions How Simplify360 helps in Providing Banking Solutions
How Simplify360 helps in Providing Banking Solutions
 
Inside Simplify360 Social Marketing Suite
Inside Simplify360 Social Marketing SuiteInside Simplify360 Social Marketing Suite
Inside Simplify360 Social Marketing Suite
 
How is it to work @ Simplify360 - An inside story
How is it to work @ Simplify360 - An inside storyHow is it to work @ Simplify360 - An inside story
How is it to work @ Simplify360 - An inside story
 
Manage your Online Reputation with Simplify360
Manage your Online Reputation with Simplify360Manage your Online Reputation with Simplify360
Manage your Online Reputation with Simplify360
 
SAS Data Management for Analytics: potenzia le tue analisi e sostieni l’innov...
SAS Data Management for Analytics: potenzia le tue analisi e sostieni l’innov...SAS Data Management for Analytics: potenzia le tue analisi e sostieni l’innov...
SAS Data Management for Analytics: potenzia le tue analisi e sostieni l’innov...
 
Social Media Command Center - Simplify360
Social Media Command Center - Simplify360Social Media Command Center - Simplify360
Social Media Command Center - Simplify360
 
What is the Value of SAS Analytics?
What is the Value of SAS Analytics?What is the Value of SAS Analytics?
What is the Value of SAS Analytics?
 
Social media analytics and measurement tool - Simplify360
Social media analytics and measurement tool  - Simplify360Social media analytics and measurement tool  - Simplify360
Social media analytics and measurement tool - Simplify360
 
Sas visual-analytics-startup-guide
Sas visual-analytics-startup-guideSas visual-analytics-startup-guide
Sas visual-analytics-startup-guide
 
How SAS Makes Social Media Practical for Employees
How SAS Makes Social Media Practical for EmployeesHow SAS Makes Social Media Practical for Employees
How SAS Makes Social Media Practical for Employees
 

Ähnlich wie Analytics with SAS

Important SAS Tips and Tricks for A Grade
Important SAS Tips and Tricks for A GradeImportant SAS Tips and Tricks for A Grade
Important SAS Tips and Tricks for A GradeLesa Cote
 
Introduction to SAS
Introduction to SASIntroduction to SAS
Introduction to SASImam Jaffer
 
SAS Programming Notes
SAS Programming NotesSAS Programming Notes
SAS Programming NotesGnana Murthy A
 
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!
 
Introduction To Sas
Introduction To SasIntroduction To Sas
Introduction To Sashalasti
 
Introduction to-sas-1211594349119006-8
Introduction to-sas-1211594349119006-8Introduction to-sas-1211594349119006-8
Introduction to-sas-1211594349119006-8thotakoti
 
SPSS vs SAS_ The Key Differences You Should Know.pptx
SPSS vs SAS_ The Key Differences You Should Know.pptxSPSS vs SAS_ The Key Differences You Should Know.pptx
SPSS vs SAS_ The Key Differences You Should Know.pptxcalltutors
 
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!
 
Sas training in hyderabad
Sas training in hyderabadSas training in hyderabad
Sas training in hyderabadKelly Technologies
 
Top 140+ Advanced SAS Interview Questions and Answers.pdf
Top 140+ Advanced SAS Interview Questions and Answers.pdfTop 140+ Advanced SAS Interview Questions and Answers.pdf
Top 140+ Advanced SAS Interview Questions and Answers.pdfDatacademy.ai
 
Learn SAS Programming
Learn SAS ProgrammingLearn SAS Programming
Learn SAS ProgrammingSASTechies
 
Sas training institute in marathahalli bangalore
Sas training institute in marathahalli bangaloreSas training institute in marathahalli bangalore
Sas training institute in marathahalli bangaloreBizsmart Solutions
 
Big Data Transformation Powered By Apache Spark.pptx
Big Data Transformation Powered By Apache Spark.pptxBig Data Transformation Powered By Apache Spark.pptx
Big Data Transformation Powered By Apache Spark.pptxKnoldus Inc.
 
Big Data Transformations Powered By Spark
Big Data Transformations Powered By SparkBig Data Transformations Powered By Spark
Big Data Transformations Powered By SparkKnoldus Inc.
 

Ähnlich wie Analytics with SAS (20)

Important SAS Tips and Tricks for A Grade
Important SAS Tips and Tricks for A GradeImportant SAS Tips and Tricks for A Grade
Important SAS Tips and Tricks for A Grade
 
Introduction to SAS
Introduction to SASIntroduction to SAS
Introduction to SAS
 
SAS Programming Notes
SAS Programming NotesSAS Programming Notes
SAS Programming Notes
 
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...
 
Basics of SAS
Basics of SASBasics of SAS
Basics of SAS
 
Introduction To Sas
Introduction To SasIntroduction To Sas
Introduction To Sas
 
Introduction to-sas-1211594349119006-8
Introduction to-sas-1211594349119006-8Introduction to-sas-1211594349119006-8
Introduction to-sas-1211594349119006-8
 
SPSS vs SAS_ The Key Differences You Should Know.pptx
SPSS vs SAS_ The Key Differences You Should Know.pptxSPSS vs SAS_ The Key Differences You Should Know.pptx
SPSS vs SAS_ The Key Differences You Should Know.pptx
 
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 - Training
SAS - Training SAS - Training
SAS - Training
 
Sas training in hyderabad
Sas training in hyderabadSas training in hyderabad
Sas training in hyderabad
 
SAS Online Training by Real Time Working Professionals in USA,UK,India,Middle...
SAS Online Training by Real Time Working Professionals in USA,UK,India,Middle...SAS Online Training by Real Time Working Professionals in USA,UK,India,Middle...
SAS Online Training by Real Time Working Professionals in USA,UK,India,Middle...
 
Top 140+ Advanced SAS Interview Questions and Answers.pdf
Top 140+ Advanced SAS Interview Questions and Answers.pdfTop 140+ Advanced SAS Interview Questions and Answers.pdf
Top 140+ Advanced SAS Interview Questions and Answers.pdf
 
Learn SAS Programming
Learn SAS ProgrammingLearn SAS Programming
Learn SAS Programming
 
Sas demo
Sas demoSas demo
Sas demo
 
Sas training institute in marathahalli bangalore
Sas training institute in marathahalli bangaloreSas training institute in marathahalli bangalore
Sas training institute in marathahalli bangalore
 
Sas summary guide
Sas summary guideSas summary guide
Sas summary guide
 
SAS BASICS
SAS BASICSSAS BASICS
SAS BASICS
 
Big Data Transformation Powered By Apache Spark.pptx
Big Data Transformation Powered By Apache Spark.pptxBig Data Transformation Powered By Apache Spark.pptx
Big Data Transformation Powered By Apache Spark.pptx
 
Big Data Transformations Powered By Spark
Big Data Transformations Powered By SparkBig Data Transformations Powered By Spark
Big Data Transformations Powered By Spark
 

Mehr von Edureka!

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaEdureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaEdureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaEdureka!
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaEdureka!
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaEdureka!
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaEdureka!
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaEdureka!
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaEdureka!
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaEdureka!
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaEdureka!
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | EdurekaEdureka!
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEdureka!
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEdureka!
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaEdureka!
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaEdureka!
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaEdureka!
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaEdureka!
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaEdureka!
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | EdurekaEdureka!
 

Mehr von Edureka! (20)

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | Edureka
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | Edureka
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | Edureka
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | Edureka
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | Edureka
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| Edureka
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | Edureka
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | Edureka
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | Edureka
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | Edureka
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | Edureka
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | Edureka
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
 

KĂŒrzlich hochgeladen

JohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard37
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Mcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMKumar Satyam
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 

KĂŒrzlich hochgeladen (20)

JohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptx
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Mcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls đŸ„° 8617370543 Service Offer VIP Hot Model
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDM
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 

Analytics with SAS

  • 1. www.edureka.co/base-sas 5 Best Practices in DevOps CultureAnalytics with SAS
  • 2. www.edureka.co/base-sas Know your instructor  Hi, my name is Rakesh. And I am your trainer for tonight.  I have done my Masters in Statistics from IIT, Kanpur.  I am BASE SAS certified.  I have been training professionals and students for last 6.5 years.
  • 3. www.edureka.co/base-sas What will you learn today?  Introduction to Analytics  Why there is so much hype around SAS?  Top 5 Features of SAS  Types of SAS Datasets  How SAS Language works!  Reading Data into SAS  Plotting graphs to understand the data
  • 6. www.edureka.co/base-sas What is SAS and why all the hype around it? ‱ SAS (pronounced ‘sass’) once stood for "statistical analysis system." ‱ It began at North Carolina State University as a project to analyze agricultural research. ‱ Demand for such software capabilities began to grow, and SAS was founded in 1976 to help customers in all sorts of industries – from pharmaceutical companies and banks to academic and governmental entities. ‱ SAS – both the software and the company – thrived throughout the next few decades. Development of the software attained new heights in the industry because it could run across all platforms, using the multivendor architecture for which it is known today Jim Goodnight
  • 7. www.edureka.co/base-sas Why SAS? Is a mature development platform and has rich product documentation Has great certification programs which carry a lot of weight in market Has awesome product support Been there since long and has been deployed in production of many mission critical jobs (like churning out Pharma regulatory report and Clinical Trial analysis) Is the first choice for Fraud Detection, Data Analytics involving huge amounts of data for any big Enterprise Is an undisputed Market leader in Data Analytics and Modeling (latest Gartner, Forrester Research)
  • 9. www.edureka.co/base-sas SAS Datasets For SAS to read the dataset, it must be in a special form called SAS dataset Variables & Observations: SAS dataset looks like a spreadsheet, where Variables are the columns and Observations are the rows Size of SAS datasets: Earlier, SAS datasets could contain 32,767 variables. So, RELAX !!
  • 10. www.edureka.co/base-sas SAS Datasets (Contd.) Names must be less than or equal to 32 characters in length Rule 1 Names must start with a letter or an underscore ( _ ) Rule 2 Names contain only letters, numbers or underscore(s) Rule 3 SAS names are CASE-INSENSITIVE! Rule 4 NAMING CONVENTION: Rules for SAS names of Variables and Datasets: SAS Dataset contains Data Documentation on data: name, date of creation, information about each variable etc.
  • 11. www.edureka.co/base-sas SAS Datasets (Contd.) Observation Variables Example of a SAS dataset ï‚źID, HT & WT are Numeric Variables ï‚źName is a Character Variable ï‚źCharacter Variables, if blank, are represented by a space ï‚źNumeric Variables, if blank, are represented by a ‘.’
  • 12. www.edureka.co/base-sas How SAS Language Works? SAS won’t check for LOGICAL ERRORS! So, be Logical yourself
!!!
  • 13. www.edureka.co/base-sas Hands-On: ‱ How SAS looks! ‱ Importing Data into SAS ‱ Plotting graphs for understanding data
  • 14. www.edureka.co/base-sas How SAS looks! SAS has N=3 sub windows:- 1. Editor, 2. Log & 3. Output Below is the SAS Interface. This is how SAS main starting page looks like.
  • 15. www.edureka.co/base-sas How SAS looks! - LIBRARIES Primarily, SAS has N=2 libraries – 1. Temporary Library & 2. Permanent Library .Library:- Place to store Data Set. WHAT IS TEMPORARY & PERMANENT LIBRARY? Temporary Library:- It is the by-default library of SAS, where data is stored temporarily. The Data stored in Temp. Lib. will be erased off as and when we close the SAS session. “Work” is the TEMPORARY LIBRARY. Permanent Library:- These are user defined libraries in SAS. This is created by us and data is not erased off when we end the session. Later we will learn “How to create Permanent Lib.” WHY DO WE NEED A LIBRARY? We need a library to store our Data Sets. Here there is a very simple analogy between our day-to-day life and SAS – Normally we have Files stored in Folders or Directories . Similarly, we have Data Sets and Libraries in SAS. Temporary Library stores all current activities on RAM for fast processing. And , Permanent Library is used to store Data Set for future use also.
  • 16. www.edureka.co/base-sas Now you will learn to Create a Library in SAS.
  • 17. www.edureka.co/base-sas How SAS looks! - LIBRARIES SAS TEMPORARY LIBRARY WORK IS THE TEMPORARY LIBRARY
  • 18. www.edureka.co/base-sas Reading Data in SAS How to import / read data from Text file or CSV file? We use “Infile” statement to read CSV file What is Text file or CSV file? Comma-Separated Values (CSV) files. This is data usually created in Notepad. Vey useful in terms of Social media Analytics. Like – Twitter or Facebook. 1. 2. 3. What id “dsd” ? Delimiter Sensitive Data. It performs several functions. First, it changes the default delimiter from a blank to a comma. Next, if there are two delimiters in a row, it assumes there is a missing value between. Finally, if character values are placed in quotes (single or double quotes), the quotes are stripped from the value. That’s a lot of mileage for just three letters!
  • 19. www.edureka.co/base-sas Now we will learn how to input data using ‘Datalines’.
  • 20. www.edureka.co/base-sas Reading Data in SAS Why do we use “Datalines” in SAS? Suppose you want to write a short test program in SAS. Instead of having to place your data in an external file, you can place your lines of data directly in your SAS program by using a DATALINES statement.
  • 21. www.edureka.co/base-sas Reading Data in SAS We don’t use semicolon after every line. We can also use Datalines and Infile together to read data.  We also use “DLM” to define any other delimiter other than space(default delimiter).  DLM defines 200 other delimiters.
  • 22. www.edureka.co/base-sas DATALINES statement used to be called the CARDS statement.
  • 23. www.edureka.co/base-sas Plotting graphs to understand the data /*--SGPLOT proc statement--*/ proc sgplot data=SASHELP.IRIS; /*--TITLE and FOOTNOTE--*/ title 'Iris Graph'; footnote2 j=l 'Did you like it!!!'; /*--Scatter plot settings--*/ scatter x=SepalLength y=SepalWidth / group=Species transparency=0.0 name='Scatter'; /*--X Axis--*/ xaxis grid; /*--Y Axis--*/ yaxis grid; run;
  • 24. www.edureka.co/base-sas Using Data & Set statement  When do we use DATA statement? When you write a DATA statement such as: data test; SAS creates a temporary SAS data set called Test.  When do we use SET statement? SET statement is used for reading observations from a SAS data set instead of lines from a raw data file. Difference b/w DATA and SET statement:- There is a difference, however. Each time you read a line of data from a raw data file, the variables being read from the raw data file or created by assignment statements in the DATA step are initialized to a missing value during each iteration of the DATA step. Variables that are read from SAS data sets are not set to missing values during each iteration of the DATA step—they are said to be retained.
  • 26. www.edureka.co/base-sas Gartner’s Magic Quadrants Gartner recognizes SAS as a Leader positioned highest on the ability to Execute axis in the Magic Quadrant for Advanced Analytics
  • 27. www.edureka.co/base-sas Various Job Profiles in SAS SAS Predictive Modeler
  • 28. www.edureka.co/base-sas Job Trends Data Analytics Job Trends SAS vs R – Job Trends
  • 29. www.edureka.co/base-sas Batch Details Valid till 17th June, 11:30 PM PDT / 18th June, 12:00 PM IST Course Features  Online Live Classes : 24 Hours  Assignments : 20 Hours  Project : 20 Hours http://bit.ly/1VhU7fp Career Booster Offer - FLAT 15% OFF! 18 June Sat & Sun (4 Weekends) IST: 7:00 PM - 10:00 PM PDT: 6:30 AM - 9:30 AM INR 18,695 $ 357 INR 21,995 $ 420
  • 30. www.edureka.co/base-sas Thank You Questions/Queries/Feedback Recording and presentation will be made available to you within 24 hours