SlideShare uma empresa Scribd logo
1 de 40
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
What To Expect
• What is Data Analytics?
• Data Analytical Tools
• Why SAS?
• What Is SAS?
• SAS Framework
• SAS Programming
• SAS Applications
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Data Analytics
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Why Data Analytics?
Why
Analytics?
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Why Data Analytics?
Why
Analytics?
Cost
Reduction
Better
Decision
Making
Improved
Services
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Why Data Analytics?
Why
Analytics?
Cost
Reduction
Better
Decision
Making
Improved
Services
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Why Data Analytics?
Why
Analytics?
Cost
Reduction
Better
Decision
Making
Improved
Services
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Why Data Analytics?
Why
Analytics?
Cost
Reduction
Better
Decision
Making
Improved
Services
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
What Is Data Analytics?
Data
Knowledge
Clarity
Decisions
Analysis : Store + Organize + Mine
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Data Analytical Tools
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
There are many tools in the market that perform Data Analytics. The common ones are:
Data Analytical Tools
Apache Spark
Pig
Excel
Python
Hive
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Why SAS?
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Why SAS?
Ease of Learning
Graphical Capabilities
Advancement in tools
Job Scenario
01
02
03
04
easy
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
What Is SAS?
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
What Is SAS?
SAS? Statistical
Analytics
System
Statistical Package + DBMS + Programming Language
SAS
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS Framework
1
2
3
4
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS
1
2
3
4
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Access
Manage
Analyze
Present
Access
SAS gives you excellent data management capabilities
1)Subset Data
2)Create Variables
3)Clean & Validate Data
1
2
3
4
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Frequency or Mean calculation
Regression and Forecasting
SAS is the gold standard for statistical
analysis.
After Data Management the next step is data analysis :
1
2
3
4
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Access
4)Print reports
3)Graph reports
2)Summary reports
1)List reports
Once you have analyzed data you can present it better with SAS
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS Programming Language
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS Programming Process
Define business problem
Write a SAS program
Run the program
Review the results
Debug or modify
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS programming is based on two building blocks:
1)DATA Steps
DATA steps create or modify SAS data sets. Using DATA steps you can:
• Add data to a data set
• Compute values of variables
• Create new data sets (by sub-setting, merging)
SAS Program Structure
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS programming is based on two building blocks:
2)PROC Steps
PROC steps analyse and process SAS data sets. Using PROC steps you can:
• Print a report
• Produce descriptive analysis
• Create a tabular report
• Produce plots and charts
SAS Program Structure
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS Data
Variables
Observations
Data is central to every data set.
• In SAS Data is in tabular form
• Variables occupy the columns
• Observations occupy the rows
Data types:
• Numeric
• Characters
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS Data – Informat
Informat
• Informats tell SAS how to read a variable
• Every variable in any SAS dataset will have an informat.
• There are three main classes of informats: character, numeric and date.
Type Informat Name What it does
Character $w. Reads character data of length w
Numeric w.d
Reads numeric data of length w with d
decimal points
Date MMDDYYw. Reads date data in the form MM-DD-YY
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS Data - Format
Format
• Formats tell SAS how to display the values in the variable.
• Formats can be grouped three classes (character, numeric, and date-time)
• The general form of a format statement is:
FORMAT variable-name FORMAT-NAME.;
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS Data - Date
• Dates in SAS are represented in a special way.
• SAS date = number of days since January 1, 1960.
Date SAS Date Value
January 1, 1959 -365
January 1, 1960 0
January 1, 1961 366
January 1, 2003 15706
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
A SAS program should follow below mentioned rules:
SAS Program Structure
1)Almost every code
begins with a DATA or a
PROC Step
2)Every line of SAS code
ends with a semi colon
3)A SAS code ends with
RUN or QUIT keyword
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Linear Regression
SAS Program
• Establish a relationship between two variables
• Forecast a new observation
Ex: 1) Income and spending
2)Student height and grades
Y = B0 + B1*X
Intercept
Slope
H(0) : B1 = 0 (X and Y are not related)
H(1) : B1 != 0 (X and Y are related)
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Linear Regression in SAS
SAS Program
Data practice1;
input x y;
datalines;
1 10
2 7
3 8
4 5
5 6
5.5 7
7 2
8 3.3
9 1.5
;
proc print;
run;
1) Create a sample data set
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Linear Regression in SAS
SAS Program
2) View Scatter Plot
proc sgscatter data = practice1;
plot x*y;
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Linear Regression in SAS
SAS Program
3) Run linear regression model
proc reg data = practice1;
model y = x / clb;
run;
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS Program
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Linear Regression in SAS
SAS Program
4) Create and add new value of x to predict corresponding y
data practice2;
y = .; x = 8.5;
proc print;
run;
data practice1;
set practice1 practice2;
proc print;
run; New value
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Linear Regression in SAS
SAS Program
5) Predict the value of y using the model
proc reg data = practice1;
model y = x/cli;
run;
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS Applications
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
SAS Applications
1)Stock Prediction 2)Create Safe Drugs
3)Fight Fraud 4)Optimize Workflow
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Session In A Minute
Data Analytics SAS
SAS Programming Structure Linear regression using SAS Applications of SAS
SAS Framework
What Is SAS | SAS Tutorial For Beginners | SAS Training | SAS Programming | Edureka

Mais conteúdo relacionado

Mais procurados

AnzoGraph DB: Driving AI and Machine Insights with Knowledge Graphs in a Conn...
AnzoGraph DB: Driving AI and Machine Insights with Knowledge Graphs in a Conn...AnzoGraph DB: Driving AI and Machine Insights with Knowledge Graphs in a Conn...
AnzoGraph DB: Driving AI and Machine Insights with Knowledge Graphs in a Conn...Cambridge Semantics
 
Visualization using Tableau
Visualization using TableauVisualization using Tableau
Visualization using TableauGirija Muscut
 
Moving to a data-centric architecture: Toronto Data Unconference 2015
Moving to a data-centric architecture: Toronto Data Unconference 2015Moving to a data-centric architecture: Toronto Data Unconference 2015
Moving to a data-centric architecture: Toronto Data Unconference 2015Adam Muise
 
Manipulating Data with Talend.
Manipulating Data with Talend.Manipulating Data with Talend.
Manipulating Data with Talend.Edureka!
 
Fighting Financial Crime with Artificial Intelligence
Fighting Financial Crime with Artificial IntelligenceFighting Financial Crime with Artificial Intelligence
Fighting Financial Crime with Artificial IntelligenceDataWorks Summit
 
Using SSRS Reports with SSAS Cubes
Using SSRS Reports with SSAS CubesUsing SSRS Reports with SSAS Cubes
Using SSRS Reports with SSAS CubesCode Mastery
 
Enabling Governed Data Access with Tableau Data Server
Enabling Governed Data Access with Tableau Data Server Enabling Governed Data Access with Tableau Data Server
Enabling Governed Data Access with Tableau Data Server Tableau Software
 
Preparing Your Data for Cloud Analytics & AI/ML
Preparing Your Data for Cloud Analytics & AI/ML Preparing Your Data for Cloud Analytics & AI/ML
Preparing Your Data for Cloud Analytics & AI/ML Amazon Web Services
 
Intorducing Big Data and Microsoft Azure
Intorducing Big Data and Microsoft AzureIntorducing Big Data and Microsoft Azure
Intorducing Big Data and Microsoft AzureKhalid Salama
 
#dbhouseparty - Graph Technologies - More than just Social (Distancing) Networks
#dbhouseparty - Graph Technologies - More than just Social (Distancing) Networks#dbhouseparty - Graph Technologies - More than just Social (Distancing) Networks
#dbhouseparty - Graph Technologies - More than just Social (Distancing) NetworksTammy Bednar
 
Data Warehouse Design and Best Practices
Data Warehouse Design and Best PracticesData Warehouse Design and Best Practices
Data Warehouse Design and Best PracticesIvo Andreev
 
Tableau PPT Intro, Features, Advantages, Disadvantages
Tableau PPT Intro, Features, Advantages, DisadvantagesTableau PPT Intro, Features, Advantages, Disadvantages
Tableau PPT Intro, Features, Advantages, DisadvantagesBurn & Born
 
Tableau And Data Visualization - Get Started
Tableau And Data Visualization - Get StartedTableau And Data Visualization - Get Started
Tableau And Data Visualization - Get StartedSpotle.ai
 
Implementing and running a secure datalake from the trenches
Implementing and running a secure datalake from the trenches Implementing and running a secure datalake from the trenches
Implementing and running a secure datalake from the trenches DataWorks Summit
 
Data Warehouse Tutorial For Beginners | Data Warehouse Concepts | Data Wareho...
Data Warehouse Tutorial For Beginners | Data Warehouse Concepts | Data Wareho...Data Warehouse Tutorial For Beginners | Data Warehouse Concepts | Data Wareho...
Data Warehouse Tutorial For Beginners | Data Warehouse Concepts | Data Wareho...Edureka!
 
Tableau overview - EraEdge
Tableau overview - EraEdgeTableau overview - EraEdge
Tableau overview - EraEdgeEraEdge
 

Mais procurados (20)

AnzoGraph DB: Driving AI and Machine Insights with Knowledge Graphs in a Conn...
AnzoGraph DB: Driving AI and Machine Insights with Knowledge Graphs in a Conn...AnzoGraph DB: Driving AI and Machine Insights with Knowledge Graphs in a Conn...
AnzoGraph DB: Driving AI and Machine Insights with Knowledge Graphs in a Conn...
 
Tableau Presentation
Tableau PresentationTableau Presentation
Tableau Presentation
 
Visualization using Tableau
Visualization using TableauVisualization using Tableau
Visualization using Tableau
 
Moving to a data-centric architecture: Toronto Data Unconference 2015
Moving to a data-centric architecture: Toronto Data Unconference 2015Moving to a data-centric architecture: Toronto Data Unconference 2015
Moving to a data-centric architecture: Toronto Data Unconference 2015
 
Data Science Crash Course
Data Science Crash CourseData Science Crash Course
Data Science Crash Course
 
Manipulating Data with Talend.
Manipulating Data with Talend.Manipulating Data with Talend.
Manipulating Data with Talend.
 
Fighting Financial Crime with Artificial Intelligence
Fighting Financial Crime with Artificial IntelligenceFighting Financial Crime with Artificial Intelligence
Fighting Financial Crime with Artificial Intelligence
 
Evolution of big data
Evolution of big dataEvolution of big data
Evolution of big data
 
Using SSRS Reports with SSAS Cubes
Using SSRS Reports with SSAS CubesUsing SSRS Reports with SSAS Cubes
Using SSRS Reports with SSAS Cubes
 
Enabling Governed Data Access with Tableau Data Server
Enabling Governed Data Access with Tableau Data Server Enabling Governed Data Access with Tableau Data Server
Enabling Governed Data Access with Tableau Data Server
 
Preparing Your Data for Cloud Analytics & AI/ML
Preparing Your Data for Cloud Analytics & AI/ML Preparing Your Data for Cloud Analytics & AI/ML
Preparing Your Data for Cloud Analytics & AI/ML
 
Data Visualization with Tableau - by Knowledgebee Trainings
Data Visualization with Tableau - by Knowledgebee TrainingsData Visualization with Tableau - by Knowledgebee Trainings
Data Visualization with Tableau - by Knowledgebee Trainings
 
Intorducing Big Data and Microsoft Azure
Intorducing Big Data and Microsoft AzureIntorducing Big Data and Microsoft Azure
Intorducing Big Data and Microsoft Azure
 
#dbhouseparty - Graph Technologies - More than just Social (Distancing) Networks
#dbhouseparty - Graph Technologies - More than just Social (Distancing) Networks#dbhouseparty - Graph Technologies - More than just Social (Distancing) Networks
#dbhouseparty - Graph Technologies - More than just Social (Distancing) Networks
 
Data Warehouse Design and Best Practices
Data Warehouse Design and Best PracticesData Warehouse Design and Best Practices
Data Warehouse Design and Best Practices
 
Tableau PPT Intro, Features, Advantages, Disadvantages
Tableau PPT Intro, Features, Advantages, DisadvantagesTableau PPT Intro, Features, Advantages, Disadvantages
Tableau PPT Intro, Features, Advantages, Disadvantages
 
Tableau And Data Visualization - Get Started
Tableau And Data Visualization - Get StartedTableau And Data Visualization - Get Started
Tableau And Data Visualization - Get Started
 
Implementing and running a secure datalake from the trenches
Implementing and running a secure datalake from the trenches Implementing and running a secure datalake from the trenches
Implementing and running a secure datalake from the trenches
 
Data Warehouse Tutorial For Beginners | Data Warehouse Concepts | Data Wareho...
Data Warehouse Tutorial For Beginners | Data Warehouse Concepts | Data Wareho...Data Warehouse Tutorial For Beginners | Data Warehouse Concepts | Data Wareho...
Data Warehouse Tutorial For Beginners | Data Warehouse Concepts | Data Wareho...
 
Tableau overview - EraEdge
Tableau overview - EraEdgeTableau overview - EraEdge
Tableau overview - EraEdge
 

Semelhante a What Is SAS | SAS Tutorial For Beginners | SAS Training | SAS Programming | Edureka

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!
 
FINRA's Managed Data Lake: Next-Gen Analytics in the Cloud - ENT328 - re:Inve...
FINRA's Managed Data Lake: Next-Gen Analytics in the Cloud - ENT328 - re:Inve...FINRA's Managed Data Lake: Next-Gen Analytics in the Cloud - ENT328 - re:Inve...
FINRA's Managed Data Lake: Next-Gen Analytics in the Cloud - ENT328 - re:Inve...Amazon Web Services
 
Customer-Product Analysis With Tableau | Tableau Training For Beginners | Tab...
Customer-Product Analysis With Tableau | Tableau Training For Beginners | Tab...Customer-Product Analysis With Tableau | Tableau Training For Beginners | Tab...
Customer-Product Analysis With Tableau | Tableau Training For Beginners | Tab...Edureka!
 
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
 
Architecting an Open Data Lake for the Enterprise
Architecting an Open Data Lake for the EnterpriseArchitecting an Open Data Lake for the Enterprise
Architecting an Open Data Lake for the EnterpriseAmazon Web Services
 
IT + Line of Business - Driving Faster, Deeper Insights Together
IT + Line of Business - Driving Faster, Deeper Insights TogetherIT + Line of Business - Driving Faster, Deeper Insights Together
IT + Line of Business - Driving Faster, Deeper Insights TogetherDATAVERSITY
 
Data Warehousing and Data Lake Analytics, Together - AWS Online Tech Talks
Data Warehousing and Data Lake Analytics, Together - AWS Online Tech TalksData Warehousing and Data Lake Analytics, Together - AWS Online Tech Talks
Data Warehousing and Data Lake Analytics, Together - AWS Online Tech TalksAmazon Web Services
 
Real-time Analytics using Data from IoT Devices - AWS Online Tech Talks
Real-time Analytics using Data from IoT Devices - AWS Online Tech TalksReal-time Analytics using Data from IoT Devices - AWS Online Tech Talks
Real-time Analytics using Data from IoT Devices - AWS Online Tech TalksAmazon Web Services
 
Data science | What is Data science
Data science | What is Data scienceData science | What is Data science
Data science | What is Data scienceShilpaKrishna6
 
SAS - Statistical Analysis System
SAS - Statistical Analysis SystemSAS - Statistical Analysis System
SAS - Statistical Analysis SystemDr-Jitendra Patel
 
AnDSummit2020 Session Pattern Analysis Data Model
AnDSummit2020 Session Pattern Analysis Data ModelAnDSummit2020 Session Pattern Analysis Data Model
AnDSummit2020 Session Pattern Analysis Data ModelShankar Somayajula
 
SSAS RLS Prototype | Vision and Scope Document
SSAS RLS Prototype | Vision and Scope DocumentSSAS RLS Prototype | Vision and Scope Document
SSAS RLS Prototype | Vision and Scope DocumentRyan Casey
 
How To Become A Big Data Engineer? Edureka
How To Become A Big Data Engineer? EdurekaHow To Become A Big Data Engineer? Edureka
How To Become A Big Data Engineer? EdurekaEdureka!
 
Big Data Engineer Skills and Job Description | Edureka
Big Data Engineer Skills and Job Description | EdurekaBig Data Engineer Skills and Job Description | Edureka
Big Data Engineer Skills and Job Description | EdurekaEdureka!
 
OpenDataForge - SledgeHammer EDDI 2013 presentation
OpenDataForge - SledgeHammer EDDI 2013 presentationOpenDataForge - SledgeHammer EDDI 2013 presentation
OpenDataForge - SledgeHammer EDDI 2013 presentationPascal Heus
 
Leveraging Cloud Analytics to Support Data-Driven Decisions
Leveraging Cloud Analytics to Support Data-Driven DecisionsLeveraging Cloud Analytics to Support Data-Driven Decisions
Leveraging Cloud Analytics to Support Data-Driven DecisionsAmazon Web Services
 
Data Lakes and Analytics Dow Jones - AWS FS Cloud Symposium Apr 2019.pdf
Data Lakes and Analytics Dow Jones - AWS FS Cloud Symposium Apr 2019.pdfData Lakes and Analytics Dow Jones - AWS FS Cloud Symposium Apr 2019.pdf
Data Lakes and Analytics Dow Jones - AWS FS Cloud Symposium Apr 2019.pdfAmazon Web Services
 
MySQL 8.0 in a nutshell
MySQL 8.0 in a nutshellMySQL 8.0 in a nutshell
MySQL 8.0 in a nutshellOracleMySQL
 
State ofdolphin short
State ofdolphin shortState ofdolphin short
State ofdolphin shortMandy Ang
 

Semelhante a What Is SAS | SAS Tutorial For Beginners | SAS Training | SAS Programming | Edureka (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...
 
FINRA's Managed Data Lake: Next-Gen Analytics in the Cloud - ENT328 - re:Inve...
FINRA's Managed Data Lake: Next-Gen Analytics in the Cloud - ENT328 - re:Inve...FINRA's Managed Data Lake: Next-Gen Analytics in the Cloud - ENT328 - re:Inve...
FINRA's Managed Data Lake: Next-Gen Analytics in the Cloud - ENT328 - re:Inve...
 
Customer-Product Analysis With Tableau | Tableau Training For Beginners | Tab...
Customer-Product Analysis With Tableau | Tableau Training For Beginners | Tab...Customer-Product Analysis With Tableau | Tableau Training For Beginners | Tab...
Customer-Product Analysis With Tableau | Tableau Training For Beginners | Tab...
 
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
 
Architecting an Open Data Lake for the Enterprise
Architecting an Open Data Lake for the EnterpriseArchitecting an Open Data Lake for the Enterprise
Architecting an Open Data Lake for the Enterprise
 
IT + Line of Business - Driving Faster, Deeper Insights Together
IT + Line of Business - Driving Faster, Deeper Insights TogetherIT + Line of Business - Driving Faster, Deeper Insights Together
IT + Line of Business - Driving Faster, Deeper Insights Together
 
Data Warehousing and Data Lake Analytics, Together - AWS Online Tech Talks
Data Warehousing and Data Lake Analytics, Together - AWS Online Tech TalksData Warehousing and Data Lake Analytics, Together - AWS Online Tech Talks
Data Warehousing and Data Lake Analytics, Together - AWS Online Tech Talks
 
SAS Programming Notes
SAS Programming NotesSAS Programming Notes
SAS Programming Notes
 
Real-time Analytics using Data from IoT Devices - AWS Online Tech Talks
Real-time Analytics using Data from IoT Devices - AWS Online Tech TalksReal-time Analytics using Data from IoT Devices - AWS Online Tech Talks
Real-time Analytics using Data from IoT Devices - AWS Online Tech Talks
 
Data science | What is Data science
Data science | What is Data scienceData science | What is Data science
Data science | What is Data science
 
SAS - Statistical Analysis System
SAS - Statistical Analysis SystemSAS - Statistical Analysis System
SAS - Statistical Analysis System
 
AnDSummit2020 Session Pattern Analysis Data Model
AnDSummit2020 Session Pattern Analysis Data ModelAnDSummit2020 Session Pattern Analysis Data Model
AnDSummit2020 Session Pattern Analysis Data Model
 
SSAS RLS Prototype | Vision and Scope Document
SSAS RLS Prototype | Vision and Scope DocumentSSAS RLS Prototype | Vision and Scope Document
SSAS RLS Prototype | Vision and Scope Document
 
How To Become A Big Data Engineer? Edureka
How To Become A Big Data Engineer? EdurekaHow To Become A Big Data Engineer? Edureka
How To Become A Big Data Engineer? Edureka
 
Big Data Engineer Skills and Job Description | Edureka
Big Data Engineer Skills and Job Description | EdurekaBig Data Engineer Skills and Job Description | Edureka
Big Data Engineer Skills and Job Description | Edureka
 
OpenDataForge - SledgeHammer EDDI 2013 presentation
OpenDataForge - SledgeHammer EDDI 2013 presentationOpenDataForge - SledgeHammer EDDI 2013 presentation
OpenDataForge - SledgeHammer EDDI 2013 presentation
 
Leveraging Cloud Analytics to Support Data-Driven Decisions
Leveraging Cloud Analytics to Support Data-Driven DecisionsLeveraging Cloud Analytics to Support Data-Driven Decisions
Leveraging Cloud Analytics to Support Data-Driven Decisions
 
Data Lakes and Analytics Dow Jones - AWS FS Cloud Symposium Apr 2019.pdf
Data Lakes and Analytics Dow Jones - AWS FS Cloud Symposium Apr 2019.pdfData Lakes and Analytics Dow Jones - AWS FS Cloud Symposium Apr 2019.pdf
Data Lakes and Analytics Dow Jones - AWS FS Cloud Symposium Apr 2019.pdf
 
MySQL 8.0 in a nutshell
MySQL 8.0 in a nutshellMySQL 8.0 in a nutshell
MySQL 8.0 in a nutshell
 
State ofdolphin short
State ofdolphin shortState ofdolphin short
State ofdolphin short
 

Mais de 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!
 

Mais de 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
 

Último

Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
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
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 

Último (20)

Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
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
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 

What Is SAS | SAS Tutorial For Beginners | SAS Training | SAS Programming | Edureka

  • 1. Copyright © 2017, edureka and/or its affiliates. All rights reserved.
  • 2. Copyright © 2017, edureka and/or its affiliates. All rights reserved. What To Expect • What is Data Analytics? • Data Analytical Tools • Why SAS? • What Is SAS? • SAS Framework • SAS Programming • SAS Applications
  • 3. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Data Analytics
  • 4. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Why Data Analytics? Why Analytics?
  • 5. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Why Data Analytics? Why Analytics? Cost Reduction Better Decision Making Improved Services
  • 6. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Why Data Analytics? Why Analytics? Cost Reduction Better Decision Making Improved Services
  • 7. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Why Data Analytics? Why Analytics? Cost Reduction Better Decision Making Improved Services
  • 8. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Why Data Analytics? Why Analytics? Cost Reduction Better Decision Making Improved Services
  • 9. Copyright © 2017, edureka and/or its affiliates. All rights reserved. What Is Data Analytics? Data Knowledge Clarity Decisions Analysis : Store + Organize + Mine
  • 10. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Data Analytical Tools
  • 11. Copyright © 2017, edureka and/or its affiliates. All rights reserved. There are many tools in the market that perform Data Analytics. The common ones are: Data Analytical Tools Apache Spark Pig Excel Python Hive
  • 12. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Why SAS?
  • 13. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Why SAS? Ease of Learning Graphical Capabilities Advancement in tools Job Scenario 01 02 03 04 easy
  • 14. Copyright © 2017, edureka and/or its affiliates. All rights reserved. What Is SAS?
  • 15. Copyright © 2017, edureka and/or its affiliates. All rights reserved. What Is SAS? SAS? Statistical Analytics System Statistical Package + DBMS + Programming Language SAS
  • 16. Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS Framework
  • 17. 1 2 3 4 Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS
  • 18. 1 2 3 4 Copyright © 2017, edureka and/or its affiliates. All rights reserved. Access Manage Analyze Present Access SAS gives you excellent data management capabilities 1)Subset Data 2)Create Variables 3)Clean & Validate Data
  • 19. 1 2 3 4 Copyright © 2017, edureka and/or its affiliates. All rights reserved. Frequency or Mean calculation Regression and Forecasting SAS is the gold standard for statistical analysis. After Data Management the next step is data analysis :
  • 20. 1 2 3 4 Copyright © 2017, edureka and/or its affiliates. All rights reserved. Access 4)Print reports 3)Graph reports 2)Summary reports 1)List reports Once you have analyzed data you can present it better with SAS
  • 21. Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS Programming Language
  • 22. Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS Programming Process Define business problem Write a SAS program Run the program Review the results Debug or modify
  • 23. Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS programming is based on two building blocks: 1)DATA Steps DATA steps create or modify SAS data sets. Using DATA steps you can: • Add data to a data set • Compute values of variables • Create new data sets (by sub-setting, merging) SAS Program Structure
  • 24. Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS programming is based on two building blocks: 2)PROC Steps PROC steps analyse and process SAS data sets. Using PROC steps you can: • Print a report • Produce descriptive analysis • Create a tabular report • Produce plots and charts SAS Program Structure
  • 25. Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS Data Variables Observations Data is central to every data set. • In SAS Data is in tabular form • Variables occupy the columns • Observations occupy the rows Data types: • Numeric • Characters
  • 26. Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS Data – Informat Informat • Informats tell SAS how to read a variable • Every variable in any SAS dataset will have an informat. • There are three main classes of informats: character, numeric and date. Type Informat Name What it does Character $w. Reads character data of length w Numeric w.d Reads numeric data of length w with d decimal points Date MMDDYYw. Reads date data in the form MM-DD-YY
  • 27. Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS Data - Format Format • Formats tell SAS how to display the values in the variable. • Formats can be grouped three classes (character, numeric, and date-time) • The general form of a format statement is: FORMAT variable-name FORMAT-NAME.;
  • 28. Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS Data - Date • Dates in SAS are represented in a special way. • SAS date = number of days since January 1, 1960. Date SAS Date Value January 1, 1959 -365 January 1, 1960 0 January 1, 1961 366 January 1, 2003 15706
  • 29. Copyright © 2017, edureka and/or its affiliates. All rights reserved. A SAS program should follow below mentioned rules: SAS Program Structure 1)Almost every code begins with a DATA or a PROC Step 2)Every line of SAS code ends with a semi colon 3)A SAS code ends with RUN or QUIT keyword
  • 30. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Linear Regression SAS Program • Establish a relationship between two variables • Forecast a new observation Ex: 1) Income and spending 2)Student height and grades Y = B0 + B1*X Intercept Slope H(0) : B1 = 0 (X and Y are not related) H(1) : B1 != 0 (X and Y are related)
  • 31. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Linear Regression in SAS SAS Program Data practice1; input x y; datalines; 1 10 2 7 3 8 4 5 5 6 5.5 7 7 2 8 3.3 9 1.5 ; proc print; run; 1) Create a sample data set
  • 32. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Linear Regression in SAS SAS Program 2) View Scatter Plot proc sgscatter data = practice1; plot x*y;
  • 33. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Linear Regression in SAS SAS Program 3) Run linear regression model proc reg data = practice1; model y = x / clb; run;
  • 34. Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS Program
  • 35. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Linear Regression in SAS SAS Program 4) Create and add new value of x to predict corresponding y data practice2; y = .; x = 8.5; proc print; run; data practice1; set practice1 practice2; proc print; run; New value
  • 36. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Linear Regression in SAS SAS Program 5) Predict the value of y using the model proc reg data = practice1; model y = x/cli; run;
  • 37. Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS Applications
  • 38. Copyright © 2017, edureka and/or its affiliates. All rights reserved. SAS Applications 1)Stock Prediction 2)Create Safe Drugs 3)Fight Fraud 4)Optimize Workflow
  • 39. Copyright © 2017, edureka and/or its affiliates. All rights reserved. Session In A Minute Data Analytics SAS SAS Programming Structure Linear regression using SAS Applications of SAS SAS Framework