SlideShare a Scribd company logo
1 of 80
Copyright © SAS Institute Inc. All rights reserved.
Welcome to Webinar
Machine Learning : Decision Trees
NGSACE - SAS
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
AGENDA
2
Machine learning Overview
Introduction to Decision Trees
Industrial Applications of Neural Nets
A walk through demo of Neural Network Applications
SAS – NGASCE
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
WHAT IS MACHINE LEARNING?
FUN FACT: More than 30 years ago, SAS CEO, Jim Goodnight wrote a procedure for "k-nearest neighbor discriminant
analysis," which is a machine learning method! And growing since….
SAS Data Mining Primer course 1998
Machine
Learning
Machine learning is a branch of
artificial intelligence that
automates the building of systems
that learn iteratively from data,
identify patterns, and predict future
results – with minimal human
intervention.
It shares many approaches with other
related field, but it focuses on predictive
accuracy rather than interpretability of the
model
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
Automate
• Provide automation to the model building
process by minimizing human
intervention
Customize
• Build powerful models using SAS’s state-
of-the-art algorithms in conjunction with
open source tools
Speed
• Fast response time for sophisticated
analytics applied to data of any size or
complexity
SAS ANALYTICS IN ACTION
Machine Learning
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
DataMining Machine Learning
TRANSDUCTION
REINFORCEMENT
LEARNING
DEVELOPMENTA
LEARNING
*In semi-supervised learning, supervised prediction and classification algorithms are often combined with clustering.
SEMI-
SUPERVISED
LEARNING
Prediction and
classification*
Clustering*
EM
TSVM
Manifold
regularization
Autoencoders
Multilayer perceptron
Restricted Boltzmann
machines
SUPERVISED
LEARNING
Regression
LASSO regression
Logistic regression
Ridge regression
Decision tree
Gradient boosting
Random forests
Decision Trees
SVM
Naïve Bayes
Neighbors
Gaussian
processes
UNSUPERVISED
LEARNING
A priori rules
Clustering
k-means clustering
Mean shift clustering
Spectral clustering
Kernel density
estimation
Nonnegative
matrix
factorization
PCA
Kernel PCA
Sparse PCA
Singular value
decomposition
SOM
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
MACHINE LEARNING : WHY IS IT SO IMPORTANT NOW?
Data Computing
Power
Algorithms
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
SAS ANALYTICS IN ACTION
Data is the key to driving efficient machine learning modeling: while machine learning relies on algorithms that
learn from data and require less constraints than traditional algorithms, you can use ML tools to efficiently
prepare data for further modeling
Structured Data
Online / Digital Data
Machine Data
Social Media Data
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
SAS ANALYTICS IN ACTION
Discovery is the core of machine learning, as machine learning fully exploits the idea of creativity by allowing to
use powerful algorithms to identify patterns and trends in data
Visualization
Prediction
Machine Learning
Optimization
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
SAS ANALYTICS IN ACTION
Deployment is a sometimes underestimated capability of the machine learning space, as while the models are
efficiently and powerfully developed, they also need to be deployed for execution in other environments and be
managed for enterprise purposes
Data Warehouse
CRM / Call Center
Mobile Channel
Devices
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
MACHINE LEARNING PROCESS FLOW
Data
Preprocessing
Feature
Engineering
Learning
Algorithm
Model
Evaluation
Classify/
Predict
Trained Model
Post
Processing
Raw
Data
New Incoming
Data
%
Accuracy
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
APPLICATIONS OF MACHINE LEARNING
Predictive Asset
Maintenance
Fraud
Credit Scoring
Next Best Offers Customer Segmentation
Targeted Acquisition /
Retention / Attrition
Real-time Ad
placements
Natural Language
Processing
Network Intrusion
Detection
Online
Recommendations
Customer Lifetime
Value
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
Enterprise Miner/Text Miner
• GUI interface
• Analytical data preparation
• Feature Engineering
• Sophisticated learning models
• Natural language processing
• Model life-cycle management
• Production scoring
• Integration with open source
• Industry specific modules
CAPABILITIES AND BENEFITS: TECHNOLOGY
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
DECISION TREES
INTRODUCTION AND INDUSTRIAL APPLICATIONS
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
WHAT IS DECISION TREE ?
14
A tree has many analogies in real life,
and turns out that it has influenced a
wide area of machine learning,
covering both classification and
regression. In decision analysis, a
decision tree can be used to visually
and explicitly represent decisions and
decision making. As the name goes, it
uses a tree-like model of decisions.
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
WHAT IS A DECISION TREE ?
15
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
WHAT IS A DECISION TREE ?
16
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
WHAT IS A DECISION TREE ?
• Decision tree refers to the tree structure of rules (often association
rules).
• The decision tree modeling process involves collecting those variables
that the analyst thinks might bear on the decision at issue, and analyzing
these variables for their ability to predict the outcome.
• The algorithm automatically determines which variables are most
important, based on their ability to sort the data into the correct output
category.
• Decision tree has a relative advantage over ANN or SVM in that a
explainatory set of rules are provided, this explaining model conclusions.
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
DECISION TREE APPLICATIONS
18
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
ADVANTAGES OF DECISION TREES
19
• Simple to understand and interpret. People are able to understand decision tree
models after a brief explanation. Trees can also be displayed graphically in a way
that is easy for non-experts to interpret.
• Able to handle both numerical and categorical data
• Requires little data preparation. Other techniques often require data normalization.
• Uses a white box model. It Possible to validate a model using statistical tests. That
makes it possible to account for the reliability of the model.
• Non-statistical approach that makes no assumptions of the training data or
prediction residuals; e.g., no distributional, independence, or constant variance
assumptions
• Performs well with large datasets. Large amounts of data can be analyzed using
standard computing resources in reasonable time.
Copyright © SAS Institute Inc. All rights reserved.
20
Model Essentials: Decision Trees
...
Pruning
Split search
Predict new cases.
Select useful inputs
Optimize complexity
Select useful inputs.
Optimize complexity.
Prediction rules
Split search
Pruning
Copyright © SAS Institute Inc. All rights reserved.
21
Simple Prediction Illustration
...
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
Predict dot color
for each x1 and x2.
Training Data
Copyright © SAS Institute Inc. All rights reserved.
22
Simple Prediction Illustration
...
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
Predict dot color
for each x1 and x2.
Training Data
Copyright © SAS Institute Inc. All rights reserved.
23
Decision Tree Prediction Rules
...
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
40%
60%
55%
70%
x1
<0.52 ≥0.52 <0.51 ≥0.51
x1
x2
<0.63 ≥0.63
root node
interior node
leaf node
Copyright © SAS Institute Inc. All rights reserved.
24
Decision Tree Prediction Rules
...
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
40%
60%
55%
x1
<0.52 ≥0.52
<0.63
70%
<0.51 ≥0.51
x1
x2
≥0.63
root node
interior node
leaf node
Predict:
Copyright © SAS Institute Inc. All rights reserved.
25
Decision Tree Prediction Rules
...
≥0.51
40%
60%
55%
x1
<0.52 ≥0.52
<0.63
40%
60%
55%
x1
<0.52 ≥0.52 ≥0.51
<0.63
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
Decision =
Estimate = 0.70
70%
<0.51
x1
x2
≥0.63
Predict:
Copyright © SAS Institute Inc. All rights reserved.
26
Decision Tree Prediction Rules
...
40%
60%
55%
x1
<0.52 ≥0.52 ≥0.51
<0.63
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
Decision =
Estimate = 0.70
70%
<0.51
x1
x2
≥0.63
Predict:
Copyright © SAS Institute Inc. All rights reserved.
27
Model Essentials: Decision Trees
...
Pruning
Split search
Predict new cases.
Select useful inputs.
Optimize complexity.
Prediction rules
Copyright © SAS Institute Inc. All rights reserved.
28
Model Essentials: Decision Trees
...
Prediction rulesPrediction rules
Split searchSplit search
Predict new cases.Predict new cases.
Select useful inputs.Select useful inputs.
PruningOptimize complexity.
Copyright © SAS Institute Inc. All rights reserved.
29
Model Essentials: Decision Trees
Split search
Prediction rulesPredict new cases.
Pruning
Select useful inputs
Optimize complexity.
Select useful inputs. Split search
Copyright © SAS Institute Inc. All rights reserved.
30
Decision Tree Split Search
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
x1
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x2
Calculate the logworth
of every partition on
input x1.
left right
Classification Matrix
Copyright © SAS Institute Inc. All rights reserved.
31
Decision Tree Split Search
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
x1
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x2
Calculate the logworth
of every partition on
input x1.
left right
Classification Matrix
Copyright © SAS Institute Inc. All rights reserved.
32
Decision Tree Split Search
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
max
logworth(x1)
0.95
0.52
left right
Select the partition with
the maximum logworth.
53%
47%
42%
58%
Copyright © SAS Institute Inc. All rights reserved.
33
Decision Tree Split Search
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
max
logworth(x1)
0.95
left right
53% 42%
47% 58%
Repeat for input x2.
Copyright © SAS Institute Inc. All rights reserved.
34
Decision Tree Split Search
max
logworth(x1)
0.95
left right
53% 42%
47% 58%
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
0.63
max
logworth(x2)
4.92
bottom top
54%
46%
35%
65%
Copyright © SAS Institute Inc. All rights reserved.
35
Decision Tree Split Search
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
max
logworth(x2)
4.92
bottom top
max
logworth(x1)
0.95
left right
Compare partition
logworth ratings.
54%
46%
35%
65%
53%
47%
42%
58%
Copyright © SAS Institute Inc. All rights reserved.
36
Decision Tree Split Search
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
0.63
x2
<0.63 ≥0.63
Create a partition rule
from the best partition
across all inputs.
Copyright © SAS Institute Inc. All rights reserved.
37
Decision Tree Split Search
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
x2
<0.63 ≥0.63
Repeat the process
in each subset.
Copyright © SAS Institute Inc. All rights reserved.
38
Decision Tree Split Search
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
0.52
max
logworth(x1)
5.72
left right
61%
39%
55%
45%
Copyright © SAS Institute Inc. All rights reserved.
39
Decision Tree Split Search
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
max
logworth(x1)
5.72
left right
61% 55%
39% 45%
0.02
max
logworth(x2)
-2.01
bottom top
38%
62%
55%
45%
Copyright © SAS Institute Inc. All rights reserved.
40
Decision Tree Split Search
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
max
logworth(x2)
-2.01
bottom top
38%
62%
55%
45%
max
logworth(x1)
5.72
left right
61%
39%
55%
45%
Copyright © SAS Institute Inc. All rights reserved.
41
Decision Tree Split Search
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
0.52
max
logworth(x2)
-2.01
bottom top
38% 55%
62% 45%
max
logworth(x1)
5.72
left right
61%
39%
55%
45%
Copyright © SAS Institute Inc. All rights reserved.
42
Decision Tree Split Search
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
x2
x1
<0.63 ≥0.63
<0.52 ≥0.52
Create a second
partition rule.
Copyright © SAS Institute Inc. All rights reserved.
43
Decision Tree Split Search
Repeat to form a maximal tree.
0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0
0.0
0.5
0.1
0.2
0.3
0.4
0.6
0.7
0.8
0.9
1.0
x1
x2
Copyright © SAS Institute Inc. All rights reserved.
44
Model Essentials: Decision Trees
Prediction rulesPredict new cases.
Pruning
Split searchSelect useful inputs
Optimize complexity.
Select useful inputs. Split search
Copyright © SAS Institute Inc. All rights reserved.
45
Model Essentials: Decision Trees
Optimize complexityOptimize complexity.
Prediction rulesPredict new cases.
Split searchSelect useful inputs.
Pruning
Copyright © SAS Institute Inc. All rights reserved.
46
Predictive Model Sequence
6
5
4
3
2
Training Data Validation Data
Model
Complexity
1
Create a sequence
of models with
increasing
complexity from the
training data.
inputs target inputs target
Copyright © SAS Institute Inc. All rights reserved.
47
Maximal Tree
Training Data Validation Data
6
5
4
3
2
Model
Complexity
1
Maximal
Tree
Create a sequence
of models with
increasing
complexity from the
training data.
inputs target inputs target
A maximal tree is the
most complex model
in the sequence.
Copyright © SAS Institute Inc. All rights reserved.
48
Maximal Tree
Training Data Validation Data
5
4
3
2
1
A maximal tree is
the most complex
model in the
sequence.
inputs target inputs target
Model
Complexity
Copyright © SAS Institute Inc. All rights reserved.
49
Pruning One Split
Training Data Validation Data
4
3
2
1
Model
Complexity
The next model in
the sequence is
formed by pruning
one split from the
maximal tree.
inputs target inputs target
Copyright © SAS Institute Inc. All rights reserved.
50
Pruning One Split
Training Data Validation Data
4
3
2
1
Model
Complexity
Each subtree’s
predictive
performance is rated
on validation data.
inputs target inputs target
Copyright © SAS Institute Inc. All rights reserved.
51
Pruning One Split
Training Data Validation Data
4
3
2
1
Model
Complexity
The subtree with
the highest
validation
assessment is
selected.
inputs target inputs target
Copyright © SAS Institute Inc. All rights reserved.
52
Pruning Two Splits
Training Data Validation Data
4
3
2
1
Model
Complexity
Similarly, this is
done for
subsequent
models.
inputs target inputs target
Copyright © SAS Institute Inc. All rights reserved.
53
Pruning Two Splits
Training Data Validation Data
3
2
1
Model
Complexity
Prune two splits from the
maximal tree,…
inputs target inputs target
Copyright © SAS Institute Inc. All rights reserved.
54
Pruning Two Splits
Training Data Validation Data
3
2
1
Model
Complexity
…rate each subtree using validation
assessment, and…
inputs target inputs target
Copyright © SAS Institute Inc. All rights reserved.
55
Pruning Two Splits
Training Data Validation Data
3
2
1
Model
Complexity
…select the subtree with
the best assessment rating.
inputs target inputs target
Copyright © SAS Institute Inc. All rights reserved.
56
Subsequent Pruning
Training Data Validation Data
Model
Complexity
Continue pruning until all
subtrees are considered.
inputs target inputs target
Copyright © SAS Institute Inc. All rights reserved.
57
Selecting the Best Tree
Training Data Validation Data
Model
Complexity
Validation
Assessment
Compare validation assessment
between tree complexities.
inputs target inputs target
Copyright © SAS Institute Inc. All rights reserved.
58
Validation Assessment
Training Data Validation Data
Choose the simplest model with
the highest validation assessment.
Model
Complexity
Validation
Assessment
inputs target inputs target
Copyright © SAS Institute Inc. All rights reserved.
59
Validation Assessment
Training Data Validation Data
What are appropriate
validation assessment
ratings?
inputs target inputs target
Copyright © SAS Institute Inc. All rights reserved.
60
Assessment Statistics
inputs target
Validation Data
target measurement
(binary, continuous,
and so on)
prediction type (decisions,
rankings, estimates)
Ratings depend on…
Copyright © SAS Institute Inc. All rights reserved.
61
Binary Targets
inputs
primary outcome
secondary outcome
target
1
0
1
1
0
Copyright © SAS Institute Inc. All rights reserved.
62
Binary Target Predictions
inputs target
1
0
1
1
0
prediction
primary
secondary
0.249
720
520 rankings
estimates
decisions
Copyright © SAS Institute Inc. All rights reserved.
63
Decision Optimization
inputs target
1
0
1
1
0
prediction
0.249
720
520
primary
secondary
decisions
Copyright © SAS Institute Inc. All rights reserved.
64
Decision Optimization: Misclassification
inputs target
1
0
1
1
0
prediction
0.249
720
520
secondary
primarysecondary
primary
false negative
false positive
Minimizemisclassification:
disagreementbetween
outcomeandprediction
Copyright © SAS Institute Inc. All rights reserved.
65
Ranking Optimization
inputs target
1
0
1
1
0
prediction
0.249
720
520
secondary
primary
1
0
720
520 rankings
estimates
decisions
Copyright © SAS Institute Inc. All rights reserved.
66
Ranking Optimization: Concordance
inputs target
1
0
1
1
0
prediction
0.249
720
520
secondary
primary
1
0
720
520
Maximize concordance:
proper ordering of
primary and secondary
outcomes
target=0→low score
target=1→high score
Copyright © SAS Institute Inc. All rights reserved.
67
Estimate Optimization
inputs target
1
0
1
1
0
prediction
0.249
secondary
primary
720
520
1 0.249
rankings
estimates
decisions
Copyright © SAS Institute Inc. All rights reserved.
68
Estimate Optimization: Squared Error
inputs target
1
0
1
1
0
prediction
0.249
secondary
primary
720
520
1 0.249 (target – estimate)2
Minimize squared error:
squared difference between
target and prediction
Copyright © SAS Institute Inc. All rights reserved.
69
Complexity Optimization: Summary
inputs target
1
0
1
1
0
prediction
0.249
secondary
primary
720
520
concordance / discordance
squared error
accuracy / misclassification
rankings
estimates
decisions
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
ORGANIC PRODUCTS
What are my potential customers ??
Can I find pointed segments for buyers??
Can I predict who will buy organic products ??
What advertising strategy I should adopt to
sell products ??
OR
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
PREDICTING ORGANIC PRODUCT BUYING BEHAVIOR
71
• DEMONSTRATION
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
UNIVERSITY & AIRLINE BOMBER – UNABOMBER
Mathematical
Genius
Youngest PhD
Holder & Professor
In jail Now !
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
PREDICTING AUTHORSHIP: UNSTRUCTURED DATA ML
73
• DEMONSTRATION
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement74
NGASCE and SAS
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
ABOUT NMIMS AND SAS
In 1981, Shri Vile Parle Kelavani Mandal (SVKM) established Narsee Monjee Institute of Management Studies (NMIMS)
to meet the growing demand for management education.
In 2003, NMIMS was declared a deemed-to- be university under section 3 of the UGC Act 1956. With the legacy of
35+ years, NMIMS has grown to being not only one of the top 10 B-schools in India but has also emerged as a multi-
disciplinary University.
SAS tops all predictive and advanced analytics suppliers and data integration suppliers, according to the IDC report,
IDC Worldwide Business Intelligence and Analytics Tools Software Market Shares, 2016: Here Comes the Cloud. SAS
held a 30.5% market share for 2016 in the advanced and predictive analytics category, well over twice the market
share of the next-closest competitor. SAS has led in this category since IDC started tracking the market in 1997. SAS
has demonstrated continued growth every year in the category, with 2016 showing a 5 percent revenue growth.
"SAS has been able to retain authority in the advanced and predictive analytics market and continue to grow year
over year,"" said Dan Vesset, Group Vice President of Analytics and Information Management at IDC.
In addition, IDC ranked SAS as the 2016 market share leader for analytic data integration software with 21.9 percent
market share.
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
About NMIMS and SAS partnership
2011- 1ST SAS EAS
License procured for 1
Campus of SVKM’S
NMIMS.
2012 – Upgraded to
campus license across 4
Campus of SVKM’S
NMIMS.
2013 – SAS
Education Services
got incorporated for 3
SVKM’S NMIMS
Schools.
2014 – Upgraded to
SAS E MINER License
in 4 Campus of SVKM’S
NMIMS.
2016 | 2018 – SVKM’S Trust +
NMIMS University Upgraded
across the SVKM’S Institutions
for SAS VA License.
50+ Faculty will be SAS Trained
+ SAS Globally Certified & SAS
Accredited 2016-2017 and
another 20+ Faculties to be in
2017.
Minimum 1000 Students will be
SAS Globally certified each
year across 33 Institutions
under SVKM for the next 5
Years i.e. 2016 - 2020.
SVKM’S NMIMS Center of
Excellence – Business
Analytics & Data Sciences.
SVKM’S NMIMS DISTANCE
LEARNING ONLINE COURSES
For the first time in India, NMIMS and SAS
have joined hands to provide a platform to
working professionals and students, hard pressed for
time, to learn the most important SAS tools through
the Online Learning mode.
Copyright © 2016, SAS Institute Inc. All rights reserved.
PROGRAMS DETAILS:
Management Program in Data Visualization
Duration: 6 months include: [Lectures, Practice sessions, Exams and Global Certification]
 Business Statistics [24 hrs/2 hrs per session/1 month]
Doubt clearing session post all session are over
 Visual Analytics [32 Hours/2 hours per session /4 months]
Post every 4 sessions doubt clearing session with the faculty
 VA Exams and Global Certification [1 month]
2 attempts to clear the subject and prep session before re-sit attempt
Prep session before Global Certification
SAS VA tool: 20 hrs during lectures and 30 hrs post lectures for practice
CERTIFICATION:
SAS Certified Visual Business Analyst: Exploration and Design Using SAS Visual Analytics
* Additional 15 hrs @ 5020 + 18% GST (minimum requirement)
Copyright © 2016, SAS Institute Inc. All rights reserved.
PROGRAMS DETAILS:
Executive Program in Big Data and Machine Learning [Predictive Model]
Duration: 9 months include: [Lectures, Practice sessions, Exams and Global Certification]
 Business Statistics [24 hours/2 hours per session/1 month]
Doubt clearing session post all session are over
 Analytics Bridge Course [24 hours/ 2 hrs per session/ 1.5 months]
 Predictive Model-E-guide [24 hours/ 2 hours per session/2 months]
 E-Miner [24 hrs / 2 hours per session/2.5 months]
 Domain specific case studies “Financial risk Management”, “Marketing analytics”, “Operations and
Supply chain analytics” [1 month]
 ML Exams and Global Certification [1 month]
2 attempts to clear the subject and prep session before re-sit attempt
Prep session before Global Certification
SAS EMINER tool: 30 hrs during lectures and 20 hrs post lectures for practice
CERTIFICATION:
SAS Certified Predictive Modeler Using SAS Enterprise Miner 14
* Additional 15 hrs @ 5020 + 18% GST (minimum requirement)
Copyright © 2016, SAS Institute Inc. All rights reserved.
WHY THIS PROGRAM WITH NMIMS
 Latest course material from SAS
 SAS Faculties
 E-Badge [2 levels]
 Sessions on “Business Statistics”, to strengthen your journey on Visual Analytics
 Session on “Analytics Bridge Course” benefiting your learning on Predictive Model
 Mentored sessions by SAS faculties
 Practicing data
 Fixing opportunities identified during exams
 Defined batch size for Quality interaction during lectures
 Sessions conducted through Amazon Web Services, exclusively used for NMIMS
 Global Certification from SAS [Preparation session conducted by SAS]
 Weekend classes and Online interface
 Joint Certification NMIMS and SAS
 Flexible Exam pattern
 Shorter Duration
 Huge depth of Analytical content
 24/7 access to SAS Software
Company Confidential - For Internal Use Only
Copyright © 2016, SAS Institute Inc. All rights reserved.
Global Sales Support & Enablement
Questions !!
Thanks !!
For Queries
Email: ngasce@nmims.edu
Toll Free: 1-800-1025-136 Mon-Sat (10am – 6pm)

More Related Content

Similar to Machine Learning: Decision Trees

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
 
The Zen of DataOps – AWS Lake Formation and the Data Supply Chain Pipeline
The Zen of DataOps – AWS Lake Formation and the Data Supply Chain PipelineThe Zen of DataOps – AWS Lake Formation and the Data Supply Chain Pipeline
The Zen of DataOps – AWS Lake Formation and the Data Supply Chain PipelineAmazon Web Services
 
Virtual Sandbox for Data Scientists at Enterprise Scale
Virtual Sandbox for Data Scientists at Enterprise ScaleVirtual Sandbox for Data Scientists at Enterprise Scale
Virtual Sandbox for Data Scientists at Enterprise ScaleDenodo
 
Introduction to Machine Learning on IBM Power Systems
Introduction to Machine Learning on IBM Power SystemsIntroduction to Machine Learning on IBM Power Systems
Introduction to Machine Learning on IBM Power SystemsDavid Spurway
 
Production model lifecycle management 2016 09
Production model lifecycle management 2016 09Production model lifecycle management 2016 09
Production model lifecycle management 2016 09Greg Makowski
 
AI for RoI - How to choose the right AI solution?
AI for RoI - How to choose the right AI solution?AI for RoI - How to choose the right AI solution?
AI for RoI - How to choose the right AI solution?Abhinav Singhal
 
Journey to analytics in the cloud
Journey to analytics in the cloudJourney to analytics in the cloud
Journey to analytics in the cloudSaama
 
Amazon SageMaker 內建機器學習演算法 (Level 400)
Amazon SageMaker 內建機器學習演算法 (Level 400)Amazon SageMaker 內建機器學習演算法 (Level 400)
Amazon SageMaker 內建機器學習演算法 (Level 400)Amazon Web Services
 
Deploying Enterprise Scale Deep Learning in Actuarial Modeling at Nationwide
Deploying Enterprise Scale Deep Learning in Actuarial Modeling at NationwideDeploying Enterprise Scale Deep Learning in Actuarial Modeling at Nationwide
Deploying Enterprise Scale Deep Learning in Actuarial Modeling at NationwideDatabricks
 
SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...
SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...
SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...Aspire Techsoft Academy
 
AUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine Learning
AUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine LearningAUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine Learning
AUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine LearningSandesh Rao
 
Skytree Partner Program 2-15
Skytree Partner Program 2-15Skytree Partner Program 2-15
Skytree Partner Program 2-15Dylan Steeg
 
Deep Dive Amazon SageMaker
Deep Dive Amazon SageMakerDeep Dive Amazon SageMaker
Deep Dive Amazon SageMakerCobus Bernard
 
Saama-POI Webinar Slides FINAL 04.27.2016 dm
Saama-POI Webinar Slides FINAL 04.27.2016 dmSaama-POI Webinar Slides FINAL 04.27.2016 dm
Saama-POI Webinar Slides FINAL 04.27.2016 dmDan Maxwell
 
Datarobot, 자동화된 분석 적용 시 분석 절차의 변화 및 효용 - 홍운표 데이터 사이언티스트, DataRobot :: AWS Sum...
Datarobot, 자동화된 분석 적용 시 분석 절차의 변화 및 효용 - 홍운표 데이터 사이언티스트, DataRobot :: AWS Sum...Datarobot, 자동화된 분석 적용 시 분석 절차의 변화 및 효용 - 홍운표 데이터 사이언티스트, DataRobot :: AWS Sum...
Datarobot, 자동화된 분석 적용 시 분석 절차의 변화 및 효용 - 홍운표 데이터 사이언티스트, DataRobot :: AWS Sum...Amazon Web Services Korea
 
#askSAP Analytics Innovations Community Call: Reimagine Analytics for the Dig...
#askSAP Analytics Innovations Community Call: Reimagine Analytics for the Dig...#askSAP Analytics Innovations Community Call: Reimagine Analytics for the Dig...
#askSAP Analytics Innovations Community Call: Reimagine Analytics for the Dig...SAP Analytics
 
Data & Analytics with CIS & Microsoft Platforms
Data & Analytics with CIS & Microsoft PlatformsData & Analytics with CIS & Microsoft Platforms
Data & Analytics with CIS & Microsoft PlatformsSonata Software
 

Similar to Machine Learning: Decision Trees (20)

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?
 
The Zen of DataOps – AWS Lake Formation and the Data Supply Chain Pipeline
The Zen of DataOps – AWS Lake Formation and the Data Supply Chain PipelineThe Zen of DataOps – AWS Lake Formation and the Data Supply Chain Pipeline
The Zen of DataOps – AWS Lake Formation and the Data Supply Chain Pipeline
 
Virtual Sandbox for Data Scientists at Enterprise Scale
Virtual Sandbox for Data Scientists at Enterprise ScaleVirtual Sandbox for Data Scientists at Enterprise Scale
Virtual Sandbox for Data Scientists at Enterprise Scale
 
Introduction to Machine Learning on IBM Power Systems
Introduction to Machine Learning on IBM Power SystemsIntroduction to Machine Learning on IBM Power Systems
Introduction to Machine Learning on IBM Power Systems
 
Production model lifecycle management 2016 09
Production model lifecycle management 2016 09Production model lifecycle management 2016 09
Production model lifecycle management 2016 09
 
Automated Analytics at Scale
Automated Analytics at ScaleAutomated Analytics at Scale
Automated Analytics at Scale
 
AI for RoI - How to choose the right AI solution?
AI for RoI - How to choose the right AI solution?AI for RoI - How to choose the right AI solution?
AI for RoI - How to choose the right AI solution?
 
ImmixVegas
ImmixVegasImmixVegas
ImmixVegas
 
Journey to analytics in the cloud
Journey to analytics in the cloudJourney to analytics in the cloud
Journey to analytics in the cloud
 
Amazon SageMaker 內建機器學習演算法 (Level 400)
Amazon SageMaker 內建機器學習演算法 (Level 400)Amazon SageMaker 內建機器學習演算法 (Level 400)
Amazon SageMaker 內建機器學習演算法 (Level 400)
 
Sas demo
Sas demoSas demo
Sas demo
 
Deploying Enterprise Scale Deep Learning in Actuarial Modeling at Nationwide
Deploying Enterprise Scale Deep Learning in Actuarial Modeling at NationwideDeploying Enterprise Scale Deep Learning in Actuarial Modeling at Nationwide
Deploying Enterprise Scale Deep Learning in Actuarial Modeling at Nationwide
 
SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...
SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...
SAS Clinical Trials Programmer Certification: Why SAS is the best choice for ...
 
AUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine Learning
AUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine LearningAUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine Learning
AUSOUG - NZOUG-GroundBreakers-Jun 2019 - AI and Machine Learning
 
Skytree Partner Program 2-15
Skytree Partner Program 2-15Skytree Partner Program 2-15
Skytree Partner Program 2-15
 
Deep Dive Amazon SageMaker
Deep Dive Amazon SageMakerDeep Dive Amazon SageMaker
Deep Dive Amazon SageMaker
 
Saama-POI Webinar Slides FINAL 04.27.2016 dm
Saama-POI Webinar Slides FINAL 04.27.2016 dmSaama-POI Webinar Slides FINAL 04.27.2016 dm
Saama-POI Webinar Slides FINAL 04.27.2016 dm
 
Datarobot, 자동화된 분석 적용 시 분석 절차의 변화 및 효용 - 홍운표 데이터 사이언티스트, DataRobot :: AWS Sum...
Datarobot, 자동화된 분석 적용 시 분석 절차의 변화 및 효용 - 홍운표 데이터 사이언티스트, DataRobot :: AWS Sum...Datarobot, 자동화된 분석 적용 시 분석 절차의 변화 및 효용 - 홍운표 데이터 사이언티스트, DataRobot :: AWS Sum...
Datarobot, 자동화된 분석 적용 시 분석 절차의 변화 및 효용 - 홍운표 데이터 사이언티스트, DataRobot :: AWS Sum...
 
#askSAP Analytics Innovations Community Call: Reimagine Analytics for the Dig...
#askSAP Analytics Innovations Community Call: Reimagine Analytics for the Dig...#askSAP Analytics Innovations Community Call: Reimagine Analytics for the Dig...
#askSAP Analytics Innovations Community Call: Reimagine Analytics for the Dig...
 
Data & Analytics with CIS & Microsoft Platforms
Data & Analytics with CIS & Microsoft PlatformsData & Analytics with CIS & Microsoft Platforms
Data & Analytics with CIS & Microsoft Platforms
 

More from NMIMS Global Access School of Continuing Education (NGA-SCE) (6)

Value Based Leadership - NMIMS Knowledge Series
Value Based Leadership - NMIMS Knowledge SeriesValue Based Leadership - NMIMS Knowledge Series
Value Based Leadership - NMIMS Knowledge Series
 
Building Great Leaders | NMIMS Knowledge Series
Building Great Leaders | NMIMS Knowledge SeriesBuilding Great Leaders | NMIMS Knowledge Series
Building Great Leaders | NMIMS Knowledge Series
 
Managing People Change in Digital Era
Managing People Change in Digital EraManaging People Change in Digital Era
Managing People Change in Digital Era
 
Changing Team Dynamics @India Inc.
Changing Team Dynamics @India Inc.Changing Team Dynamics @India Inc.
Changing Team Dynamics @India Inc.
 
The World Of Investing Cultural Shift
The World Of Investing Cultural Shift The World Of Investing Cultural Shift
The World Of Investing Cultural Shift
 
The Analytics Economy
The Analytics EconomyThe Analytics Economy
The Analytics Economy
 

Recently uploaded

RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhijennyeacort
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDRafezzaman
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsappssapnasaifi408
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptSonatrach
 
9654467111 Call Girls In Munirka Hotel And Home Service
9654467111 Call Girls In Munirka Hotel And Home Service9654467111 Call Girls In Munirka Hotel And Home Service
9654467111 Call Girls In Munirka Hotel And Home ServiceSapana Sha
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Sapana Sha
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...soniya singh
 
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理e4aez8ss
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFAAndrei Kaleshka
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPramod Kumar Srivastava
 
20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdfHuman37
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一fhwihughh
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceSapana Sha
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Callshivangimorya083
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)jennyeacort
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfLars Albertsson
 

Recently uploaded (20)

RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
 
9654467111 Call Girls In Munirka Hotel And Home Service
9654467111 Call Girls In Munirka Hotel And Home Service9654467111 Call Girls In Munirka Hotel And Home Service
9654467111 Call Girls In Munirka Hotel And Home Service
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
 
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
科罗拉多大学波尔得分校毕业证学位证成绩单-可办理
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFA
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts Service
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdf
 

Machine Learning: Decision Trees

  • 1. Copyright © SAS Institute Inc. All rights reserved. Welcome to Webinar Machine Learning : Decision Trees NGSACE - SAS
  • 2. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement AGENDA 2 Machine learning Overview Introduction to Decision Trees Industrial Applications of Neural Nets A walk through demo of Neural Network Applications SAS – NGASCE
  • 3. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement WHAT IS MACHINE LEARNING? FUN FACT: More than 30 years ago, SAS CEO, Jim Goodnight wrote a procedure for "k-nearest neighbor discriminant analysis," which is a machine learning method! And growing since…. SAS Data Mining Primer course 1998 Machine Learning Machine learning is a branch of artificial intelligence that automates the building of systems that learn iteratively from data, identify patterns, and predict future results – with minimal human intervention. It shares many approaches with other related field, but it focuses on predictive accuracy rather than interpretability of the model
  • 4. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement Automate • Provide automation to the model building process by minimizing human intervention Customize • Build powerful models using SAS’s state- of-the-art algorithms in conjunction with open source tools Speed • Fast response time for sophisticated analytics applied to data of any size or complexity SAS ANALYTICS IN ACTION Machine Learning
  • 5. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement DataMining Machine Learning TRANSDUCTION REINFORCEMENT LEARNING DEVELOPMENTA LEARNING *In semi-supervised learning, supervised prediction and classification algorithms are often combined with clustering. SEMI- SUPERVISED LEARNING Prediction and classification* Clustering* EM TSVM Manifold regularization Autoencoders Multilayer perceptron Restricted Boltzmann machines SUPERVISED LEARNING Regression LASSO regression Logistic regression Ridge regression Decision tree Gradient boosting Random forests Decision Trees SVM Naïve Bayes Neighbors Gaussian processes UNSUPERVISED LEARNING A priori rules Clustering k-means clustering Mean shift clustering Spectral clustering Kernel density estimation Nonnegative matrix factorization PCA Kernel PCA Sparse PCA Singular value decomposition SOM
  • 6. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement MACHINE LEARNING : WHY IS IT SO IMPORTANT NOW? Data Computing Power Algorithms
  • 7. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement SAS ANALYTICS IN ACTION Data is the key to driving efficient machine learning modeling: while machine learning relies on algorithms that learn from data and require less constraints than traditional algorithms, you can use ML tools to efficiently prepare data for further modeling Structured Data Online / Digital Data Machine Data Social Media Data
  • 8. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement SAS ANALYTICS IN ACTION Discovery is the core of machine learning, as machine learning fully exploits the idea of creativity by allowing to use powerful algorithms to identify patterns and trends in data Visualization Prediction Machine Learning Optimization
  • 9. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement SAS ANALYTICS IN ACTION Deployment is a sometimes underestimated capability of the machine learning space, as while the models are efficiently and powerfully developed, they also need to be deployed for execution in other environments and be managed for enterprise purposes Data Warehouse CRM / Call Center Mobile Channel Devices
  • 10. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement MACHINE LEARNING PROCESS FLOW Data Preprocessing Feature Engineering Learning Algorithm Model Evaluation Classify/ Predict Trained Model Post Processing Raw Data New Incoming Data % Accuracy
  • 11. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement APPLICATIONS OF MACHINE LEARNING Predictive Asset Maintenance Fraud Credit Scoring Next Best Offers Customer Segmentation Targeted Acquisition / Retention / Attrition Real-time Ad placements Natural Language Processing Network Intrusion Detection Online Recommendations Customer Lifetime Value
  • 12. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement Enterprise Miner/Text Miner • GUI interface • Analytical data preparation • Feature Engineering • Sophisticated learning models • Natural language processing • Model life-cycle management • Production scoring • Integration with open source • Industry specific modules CAPABILITIES AND BENEFITS: TECHNOLOGY
  • 13. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement DECISION TREES INTRODUCTION AND INDUSTRIAL APPLICATIONS
  • 14. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement WHAT IS DECISION TREE ? 14 A tree has many analogies in real life, and turns out that it has influenced a wide area of machine learning, covering both classification and regression. In decision analysis, a decision tree can be used to visually and explicitly represent decisions and decision making. As the name goes, it uses a tree-like model of decisions.
  • 15. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement WHAT IS A DECISION TREE ? 15
  • 16. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement WHAT IS A DECISION TREE ? 16
  • 17. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement WHAT IS A DECISION TREE ? • Decision tree refers to the tree structure of rules (often association rules). • The decision tree modeling process involves collecting those variables that the analyst thinks might bear on the decision at issue, and analyzing these variables for their ability to predict the outcome. • The algorithm automatically determines which variables are most important, based on their ability to sort the data into the correct output category. • Decision tree has a relative advantage over ANN or SVM in that a explainatory set of rules are provided, this explaining model conclusions.
  • 18. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement DECISION TREE APPLICATIONS 18
  • 19. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement ADVANTAGES OF DECISION TREES 19 • Simple to understand and interpret. People are able to understand decision tree models after a brief explanation. Trees can also be displayed graphically in a way that is easy for non-experts to interpret. • Able to handle both numerical and categorical data • Requires little data preparation. Other techniques often require data normalization. • Uses a white box model. It Possible to validate a model using statistical tests. That makes it possible to account for the reliability of the model. • Non-statistical approach that makes no assumptions of the training data or prediction residuals; e.g., no distributional, independence, or constant variance assumptions • Performs well with large datasets. Large amounts of data can be analyzed using standard computing resources in reasonable time.
  • 20. Copyright © SAS Institute Inc. All rights reserved. 20 Model Essentials: Decision Trees ... Pruning Split search Predict new cases. Select useful inputs Optimize complexity Select useful inputs. Optimize complexity. Prediction rules Split search Pruning
  • 21. Copyright © SAS Institute Inc. All rights reserved. 21 Simple Prediction Illustration ... 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 Predict dot color for each x1 and x2. Training Data
  • 22. Copyright © SAS Institute Inc. All rights reserved. 22 Simple Prediction Illustration ... 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 Predict dot color for each x1 and x2. Training Data
  • 23. Copyright © SAS Institute Inc. All rights reserved. 23 Decision Tree Prediction Rules ... 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 40% 60% 55% 70% x1 <0.52 ≥0.52 <0.51 ≥0.51 x1 x2 <0.63 ≥0.63 root node interior node leaf node
  • 24. Copyright © SAS Institute Inc. All rights reserved. 24 Decision Tree Prediction Rules ... 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 40% 60% 55% x1 <0.52 ≥0.52 <0.63 70% <0.51 ≥0.51 x1 x2 ≥0.63 root node interior node leaf node Predict:
  • 25. Copyright © SAS Institute Inc. All rights reserved. 25 Decision Tree Prediction Rules ... ≥0.51 40% 60% 55% x1 <0.52 ≥0.52 <0.63 40% 60% 55% x1 <0.52 ≥0.52 ≥0.51 <0.63 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 Decision = Estimate = 0.70 70% <0.51 x1 x2 ≥0.63 Predict:
  • 26. Copyright © SAS Institute Inc. All rights reserved. 26 Decision Tree Prediction Rules ... 40% 60% 55% x1 <0.52 ≥0.52 ≥0.51 <0.63 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 Decision = Estimate = 0.70 70% <0.51 x1 x2 ≥0.63 Predict:
  • 27. Copyright © SAS Institute Inc. All rights reserved. 27 Model Essentials: Decision Trees ... Pruning Split search Predict new cases. Select useful inputs. Optimize complexity. Prediction rules
  • 28. Copyright © SAS Institute Inc. All rights reserved. 28 Model Essentials: Decision Trees ... Prediction rulesPrediction rules Split searchSplit search Predict new cases.Predict new cases. Select useful inputs.Select useful inputs. PruningOptimize complexity.
  • 29. Copyright © SAS Institute Inc. All rights reserved. 29 Model Essentials: Decision Trees Split search Prediction rulesPredict new cases. Pruning Select useful inputs Optimize complexity. Select useful inputs. Split search
  • 30. Copyright © SAS Institute Inc. All rights reserved. 30 Decision Tree Split Search 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x2 Calculate the logworth of every partition on input x1. left right Classification Matrix
  • 31. Copyright © SAS Institute Inc. All rights reserved. 31 Decision Tree Split Search 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x2 Calculate the logworth of every partition on input x1. left right Classification Matrix
  • 32. Copyright © SAS Institute Inc. All rights reserved. 32 Decision Tree Split Search 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 max logworth(x1) 0.95 0.52 left right Select the partition with the maximum logworth. 53% 47% 42% 58%
  • 33. Copyright © SAS Institute Inc. All rights reserved. 33 Decision Tree Split Search 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 max logworth(x1) 0.95 left right 53% 42% 47% 58% Repeat for input x2.
  • 34. Copyright © SAS Institute Inc. All rights reserved. 34 Decision Tree Split Search max logworth(x1) 0.95 left right 53% 42% 47% 58% 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 0.63 max logworth(x2) 4.92 bottom top 54% 46% 35% 65%
  • 35. Copyright © SAS Institute Inc. All rights reserved. 35 Decision Tree Split Search 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 max logworth(x2) 4.92 bottom top max logworth(x1) 0.95 left right Compare partition logworth ratings. 54% 46% 35% 65% 53% 47% 42% 58%
  • 36. Copyright © SAS Institute Inc. All rights reserved. 36 Decision Tree Split Search 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 0.63 x2 <0.63 ≥0.63 Create a partition rule from the best partition across all inputs.
  • 37. Copyright © SAS Institute Inc. All rights reserved. 37 Decision Tree Split Search 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 x2 <0.63 ≥0.63 Repeat the process in each subset.
  • 38. Copyright © SAS Institute Inc. All rights reserved. 38 Decision Tree Split Search 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 0.52 max logworth(x1) 5.72 left right 61% 39% 55% 45%
  • 39. Copyright © SAS Institute Inc. All rights reserved. 39 Decision Tree Split Search 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 max logworth(x1) 5.72 left right 61% 55% 39% 45% 0.02 max logworth(x2) -2.01 bottom top 38% 62% 55% 45%
  • 40. Copyright © SAS Institute Inc. All rights reserved. 40 Decision Tree Split Search 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 max logworth(x2) -2.01 bottom top 38% 62% 55% 45% max logworth(x1) 5.72 left right 61% 39% 55% 45%
  • 41. Copyright © SAS Institute Inc. All rights reserved. 41 Decision Tree Split Search 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 0.52 max logworth(x2) -2.01 bottom top 38% 55% 62% 45% max logworth(x1) 5.72 left right 61% 39% 55% 45%
  • 42. Copyright © SAS Institute Inc. All rights reserved. 42 Decision Tree Split Search 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2 x2 x1 <0.63 ≥0.63 <0.52 ≥0.52 Create a second partition rule.
  • 43. Copyright © SAS Institute Inc. All rights reserved. 43 Decision Tree Split Search Repeat to form a maximal tree. 0.0 0.50.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 0.0 0.5 0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1.0 x1 x2
  • 44. Copyright © SAS Institute Inc. All rights reserved. 44 Model Essentials: Decision Trees Prediction rulesPredict new cases. Pruning Split searchSelect useful inputs Optimize complexity. Select useful inputs. Split search
  • 45. Copyright © SAS Institute Inc. All rights reserved. 45 Model Essentials: Decision Trees Optimize complexityOptimize complexity. Prediction rulesPredict new cases. Split searchSelect useful inputs. Pruning
  • 46. Copyright © SAS Institute Inc. All rights reserved. 46 Predictive Model Sequence 6 5 4 3 2 Training Data Validation Data Model Complexity 1 Create a sequence of models with increasing complexity from the training data. inputs target inputs target
  • 47. Copyright © SAS Institute Inc. All rights reserved. 47 Maximal Tree Training Data Validation Data 6 5 4 3 2 Model Complexity 1 Maximal Tree Create a sequence of models with increasing complexity from the training data. inputs target inputs target A maximal tree is the most complex model in the sequence.
  • 48. Copyright © SAS Institute Inc. All rights reserved. 48 Maximal Tree Training Data Validation Data 5 4 3 2 1 A maximal tree is the most complex model in the sequence. inputs target inputs target Model Complexity
  • 49. Copyright © SAS Institute Inc. All rights reserved. 49 Pruning One Split Training Data Validation Data 4 3 2 1 Model Complexity The next model in the sequence is formed by pruning one split from the maximal tree. inputs target inputs target
  • 50. Copyright © SAS Institute Inc. All rights reserved. 50 Pruning One Split Training Data Validation Data 4 3 2 1 Model Complexity Each subtree’s predictive performance is rated on validation data. inputs target inputs target
  • 51. Copyright © SAS Institute Inc. All rights reserved. 51 Pruning One Split Training Data Validation Data 4 3 2 1 Model Complexity The subtree with the highest validation assessment is selected. inputs target inputs target
  • 52. Copyright © SAS Institute Inc. All rights reserved. 52 Pruning Two Splits Training Data Validation Data 4 3 2 1 Model Complexity Similarly, this is done for subsequent models. inputs target inputs target
  • 53. Copyright © SAS Institute Inc. All rights reserved. 53 Pruning Two Splits Training Data Validation Data 3 2 1 Model Complexity Prune two splits from the maximal tree,… inputs target inputs target
  • 54. Copyright © SAS Institute Inc. All rights reserved. 54 Pruning Two Splits Training Data Validation Data 3 2 1 Model Complexity …rate each subtree using validation assessment, and… inputs target inputs target
  • 55. Copyright © SAS Institute Inc. All rights reserved. 55 Pruning Two Splits Training Data Validation Data 3 2 1 Model Complexity …select the subtree with the best assessment rating. inputs target inputs target
  • 56. Copyright © SAS Institute Inc. All rights reserved. 56 Subsequent Pruning Training Data Validation Data Model Complexity Continue pruning until all subtrees are considered. inputs target inputs target
  • 57. Copyright © SAS Institute Inc. All rights reserved. 57 Selecting the Best Tree Training Data Validation Data Model Complexity Validation Assessment Compare validation assessment between tree complexities. inputs target inputs target
  • 58. Copyright © SAS Institute Inc. All rights reserved. 58 Validation Assessment Training Data Validation Data Choose the simplest model with the highest validation assessment. Model Complexity Validation Assessment inputs target inputs target
  • 59. Copyright © SAS Institute Inc. All rights reserved. 59 Validation Assessment Training Data Validation Data What are appropriate validation assessment ratings? inputs target inputs target
  • 60. Copyright © SAS Institute Inc. All rights reserved. 60 Assessment Statistics inputs target Validation Data target measurement (binary, continuous, and so on) prediction type (decisions, rankings, estimates) Ratings depend on…
  • 61. Copyright © SAS Institute Inc. All rights reserved. 61 Binary Targets inputs primary outcome secondary outcome target 1 0 1 1 0
  • 62. Copyright © SAS Institute Inc. All rights reserved. 62 Binary Target Predictions inputs target 1 0 1 1 0 prediction primary secondary 0.249 720 520 rankings estimates decisions
  • 63. Copyright © SAS Institute Inc. All rights reserved. 63 Decision Optimization inputs target 1 0 1 1 0 prediction 0.249 720 520 primary secondary decisions
  • 64. Copyright © SAS Institute Inc. All rights reserved. 64 Decision Optimization: Misclassification inputs target 1 0 1 1 0 prediction 0.249 720 520 secondary primarysecondary primary false negative false positive Minimizemisclassification: disagreementbetween outcomeandprediction
  • 65. Copyright © SAS Institute Inc. All rights reserved. 65 Ranking Optimization inputs target 1 0 1 1 0 prediction 0.249 720 520 secondary primary 1 0 720 520 rankings estimates decisions
  • 66. Copyright © SAS Institute Inc. All rights reserved. 66 Ranking Optimization: Concordance inputs target 1 0 1 1 0 prediction 0.249 720 520 secondary primary 1 0 720 520 Maximize concordance: proper ordering of primary and secondary outcomes target=0→low score target=1→high score
  • 67. Copyright © SAS Institute Inc. All rights reserved. 67 Estimate Optimization inputs target 1 0 1 1 0 prediction 0.249 secondary primary 720 520 1 0.249 rankings estimates decisions
  • 68. Copyright © SAS Institute Inc. All rights reserved. 68 Estimate Optimization: Squared Error inputs target 1 0 1 1 0 prediction 0.249 secondary primary 720 520 1 0.249 (target – estimate)2 Minimize squared error: squared difference between target and prediction
  • 69. Copyright © SAS Institute Inc. All rights reserved. 69 Complexity Optimization: Summary inputs target 1 0 1 1 0 prediction 0.249 secondary primary 720 520 concordance / discordance squared error accuracy / misclassification rankings estimates decisions
  • 70. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement ORGANIC PRODUCTS What are my potential customers ?? Can I find pointed segments for buyers?? Can I predict who will buy organic products ?? What advertising strategy I should adopt to sell products ?? OR
  • 71. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement PREDICTING ORGANIC PRODUCT BUYING BEHAVIOR 71 • DEMONSTRATION
  • 72. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement UNIVERSITY & AIRLINE BOMBER – UNABOMBER Mathematical Genius Youngest PhD Holder & Professor In jail Now !
  • 73. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement PREDICTING AUTHORSHIP: UNSTRUCTURED DATA ML 73 • DEMONSTRATION
  • 74. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement74 NGASCE and SAS
  • 75. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement ABOUT NMIMS AND SAS In 1981, Shri Vile Parle Kelavani Mandal (SVKM) established Narsee Monjee Institute of Management Studies (NMIMS) to meet the growing demand for management education. In 2003, NMIMS was declared a deemed-to- be university under section 3 of the UGC Act 1956. With the legacy of 35+ years, NMIMS has grown to being not only one of the top 10 B-schools in India but has also emerged as a multi- disciplinary University. SAS tops all predictive and advanced analytics suppliers and data integration suppliers, according to the IDC report, IDC Worldwide Business Intelligence and Analytics Tools Software Market Shares, 2016: Here Comes the Cloud. SAS held a 30.5% market share for 2016 in the advanced and predictive analytics category, well over twice the market share of the next-closest competitor. SAS has led in this category since IDC started tracking the market in 1997. SAS has demonstrated continued growth every year in the category, with 2016 showing a 5 percent revenue growth. "SAS has been able to retain authority in the advanced and predictive analytics market and continue to grow year over year,"" said Dan Vesset, Group Vice President of Analytics and Information Management at IDC. In addition, IDC ranked SAS as the 2016 market share leader for analytic data integration software with 21.9 percent market share.
  • 76. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement About NMIMS and SAS partnership 2011- 1ST SAS EAS License procured for 1 Campus of SVKM’S NMIMS. 2012 – Upgraded to campus license across 4 Campus of SVKM’S NMIMS. 2013 – SAS Education Services got incorporated for 3 SVKM’S NMIMS Schools. 2014 – Upgraded to SAS E MINER License in 4 Campus of SVKM’S NMIMS. 2016 | 2018 – SVKM’S Trust + NMIMS University Upgraded across the SVKM’S Institutions for SAS VA License. 50+ Faculty will be SAS Trained + SAS Globally Certified & SAS Accredited 2016-2017 and another 20+ Faculties to be in 2017. Minimum 1000 Students will be SAS Globally certified each year across 33 Institutions under SVKM for the next 5 Years i.e. 2016 - 2020. SVKM’S NMIMS Center of Excellence – Business Analytics & Data Sciences. SVKM’S NMIMS DISTANCE LEARNING ONLINE COURSES For the first time in India, NMIMS and SAS have joined hands to provide a platform to working professionals and students, hard pressed for time, to learn the most important SAS tools through the Online Learning mode.
  • 77. Copyright © 2016, SAS Institute Inc. All rights reserved. PROGRAMS DETAILS: Management Program in Data Visualization Duration: 6 months include: [Lectures, Practice sessions, Exams and Global Certification]  Business Statistics [24 hrs/2 hrs per session/1 month] Doubt clearing session post all session are over  Visual Analytics [32 Hours/2 hours per session /4 months] Post every 4 sessions doubt clearing session with the faculty  VA Exams and Global Certification [1 month] 2 attempts to clear the subject and prep session before re-sit attempt Prep session before Global Certification SAS VA tool: 20 hrs during lectures and 30 hrs post lectures for practice CERTIFICATION: SAS Certified Visual Business Analyst: Exploration and Design Using SAS Visual Analytics * Additional 15 hrs @ 5020 + 18% GST (minimum requirement)
  • 78. Copyright © 2016, SAS Institute Inc. All rights reserved. PROGRAMS DETAILS: Executive Program in Big Data and Machine Learning [Predictive Model] Duration: 9 months include: [Lectures, Practice sessions, Exams and Global Certification]  Business Statistics [24 hours/2 hours per session/1 month] Doubt clearing session post all session are over  Analytics Bridge Course [24 hours/ 2 hrs per session/ 1.5 months]  Predictive Model-E-guide [24 hours/ 2 hours per session/2 months]  E-Miner [24 hrs / 2 hours per session/2.5 months]  Domain specific case studies “Financial risk Management”, “Marketing analytics”, “Operations and Supply chain analytics” [1 month]  ML Exams and Global Certification [1 month] 2 attempts to clear the subject and prep session before re-sit attempt Prep session before Global Certification SAS EMINER tool: 30 hrs during lectures and 20 hrs post lectures for practice CERTIFICATION: SAS Certified Predictive Modeler Using SAS Enterprise Miner 14 * Additional 15 hrs @ 5020 + 18% GST (minimum requirement)
  • 79. Copyright © 2016, SAS Institute Inc. All rights reserved. WHY THIS PROGRAM WITH NMIMS  Latest course material from SAS  SAS Faculties  E-Badge [2 levels]  Sessions on “Business Statistics”, to strengthen your journey on Visual Analytics  Session on “Analytics Bridge Course” benefiting your learning on Predictive Model  Mentored sessions by SAS faculties  Practicing data  Fixing opportunities identified during exams  Defined batch size for Quality interaction during lectures  Sessions conducted through Amazon Web Services, exclusively used for NMIMS  Global Certification from SAS [Preparation session conducted by SAS]  Weekend classes and Online interface  Joint Certification NMIMS and SAS  Flexible Exam pattern  Shorter Duration  Huge depth of Analytical content  24/7 access to SAS Software
  • 80. Company Confidential - For Internal Use Only Copyright © 2016, SAS Institute Inc. All rights reserved. Global Sales Support & Enablement Questions !! Thanks !! For Queries Email: ngasce@nmims.edu Toll Free: 1-800-1025-136 Mon-Sat (10am – 6pm)