SlideShare a Scribd company logo
1 of 33
Download to read offline
Predictive Analytics
Dr. Brian ANG
Senior Lecturer and Consultant
Data Science
brian_ang@nus.edu.sg
#ISSLearningFest 1
© 2022 National University of Singapore. All Rights Reserved
What is Predictive Analytics?
#ISSLearningFest
Higher
Profit
Cost
Savings
Better
Resource
Allocation
Better
Efficiency
Predict or forecast
future trends or events,
or the likelihood of an
event happening
Predictive
Predictive
Analyse currently available
data using computational
approaches
Analytics
Analytics
To predict or forecast future trends and events based on
currently available data.
To predict or forecast future trends and events based on
currently available data.
2
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Example Applications of Predictive Analytics
Medical Finance Marketing
Sales Forecast
Predictive
Maintenance
Environmental
Prediction
Icons in this slide deck are from Flaticon.com
3
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Stages of Predictive Analytics Model Development
Business Objectives and Problem
Statement Identification
Data Collection, Exploration and
Preparation
Model Development & Testing
Model Deployment
Model Monitoring & Maintenance
4
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Stages of Predictive Analytics Model Development
Business Objectives and Problem
Statement Identification
• Organisations have to identify the need of the predictive analytics model.
This would be more user driven.
• Identify the different stakeholders involved and how the predictive analytics
model will affect them.
• Have to consider cost versus benefit of the model adoption
5
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Identifying the Stakeholders
Who are the stakeholders?
Anyone who has an interest or is affected by the Predictive Analytics project.
Internal stakeholders
• Project team
• Project sponsors
• Approval authorities/management
• Supporting departments
External stakeholders
• Vendors
• External clients
• Other organisations
6
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Cost versus Benefit Analysis of Predictive
Analytics Models
Cost in terms of, e.g.,
- Infrastructure
- Manpower
- Maintenance
Benefits in terms of, e.g.,
- Cost savings & efficiency due to better resource allocation using
predictive analytics.
- Increase in profit due to knowing better which factor contributes to sales
7
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Data
Collection
Data
Processing
Training and
Testing Data Split
Data Exploration &
Analysis
Data Collection, Exploration and
Preparation
Stages of Predictive Analytics Model Development
8
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Data Collection & Sources of Data
Data
Collection
Data
Processing
Training and
Testing Data Split
Data Exploration &
Analysis
Data Collection, Exploration and
Preparation
Origins
• Within the department/organisation
• External (affiliated) organisations
• Engage vendors for data collection
• Open source data
• Local and overseas sources
9
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Data Exploration & Pre-Processing
Data
Collection
Data
Processing
Training and
Testing Data Split
Data Exploration &
Analysis
Data Collection, Exploration and
Preparation
• Check whether there are missing data, outliers, erroneous data, etc.
• Perform data pre-processing to transform data into a form that can be
used for model training.
• Current data or new data collected may not be ready for model
training. E.g., the correct features or attributes need to be extracted
and put into the table columns and rows.
10
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Training & Testing Data Split
A data set can be divided into the following components:
• Training/Development Dataset
Used for development of the model during the training phase
• Testing/Validation Dataset (hold-out dataset)
Used to evaluate how well a model performs on unseen data
Data
Collection
Data
Processing
Training and
Testing Data Split
Data Exploration &
Analysis
Data Collection, Exploration and
Preparation
11
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Training & Testing Data Split
Data Set
Training Testing
Cross-validation
12
Repeat this N times
Present the results as the average of
the N runs and with the standard
deviation.
Random selection
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Stages of Predictive Analytics Model Development
Model
Development
Training
Data
Testing Data
Prediction Output
Testing Data
Model Development & Testing
Accepted model should perform well on both the training and testing
datasets
Proposed
Model
Proposed Model Accepted Model
13
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Predictive Analytics Model Examples
• To predict numeric quantities
• E.g., predict revenue based on
marketing expenditure, car sales
based on car features.
Regression
14
• Predict categorical quantities
• E.g., predict whether a customer will buy a
product or not. Among a few diseases,
which disease is a patient likely to contract.
Classification
• Predict future quantities based previous
trend
• E.g., forecast next few months
temperature based on historical data.
Forecasting
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Regression Model Examples
Fit a straight line for a given set of points
y=bo+b1x1+b2x2+b3x3 +b4x4 +b5x5 + e
y=bo+b1x1+b2𝑥 + e
Simple Linear Regression Model Quadratic regression model
Multiple Linear Regression model
15
y=bo+b1x1+ e
0
10000
20000
30000
40000
50000
60000
70000
80000
90000
10 30 50 70
Healthcare
Cost
Age
Predicted Value
Actual Value
Residual
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Classification Model Examples
Image from:
https://www.ibm.com/cloud/blog/ai-vs-machine-learning-vs-deep-learning-vs-neural-networks
Image from: https://en.wikipedia.org/wiki/Random_forest
16
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Forecasting Model Examples
Auto-Regressive Integrated Moving Average (ARIMA)
or the
Seasonal ARIMA models
(p,d,q) (P,D,Q)s
Seasonal Component
Non-Seasonal Component
17
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Evaluation of Regression & Time Series Models
𝑅𝑜𝑜𝑡 𝑀𝑒𝑎𝑛 𝑆𝑞𝑢𝑎𝑟𝑒 𝐸𝑟𝑟𝑜𝑟 𝑅𝑀𝑆𝐸
∑ 𝑒
𝑛
𝑀𝑒𝑎𝑛 𝐴𝑏𝑠𝑜𝑙𝑢𝑡𝑒 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 𝐷𝑒𝑣𝑖𝑎𝑡𝑖𝑜𝑛 𝑀𝐴𝑃𝐷
100%
𝑛
|
𝑒
𝑦
|
Error: 𝑒 𝑦 𝑦
18
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Evaluation of Classification Models
𝑛
• Accuracy =
𝑐
× 100%
• Is accuracy the only evaluation metric?
Where
- c is the total number of correctly classified samples
- n is the total number of samples
19
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Confusion Matrix
Predicted Values
Negative Positive
Actual
Values
Negative
Positive
We can further analyze the model performance by breaking down the results.
Consider a Binary Classification Problem
20
True Negative (TN)
True Positive (TP)
False Negative (FN)
False Positive (FP)
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Confusion Matrix
Predicted Values
Negative Positive
Actual
Values
Negative True Negative (TN) False Positive (FP)
Positive False Negative (FN) True Positive (TP)
- Accuracy = (TP+TN)/(TP+TN+FP+FN) %
- Specificity = TN/(TN+FP)
Example: Percentage of patients correctly predicted as not having a certain disease, or
percentage of transactions correctly predicted as not fraud.
- Sensitivity = TP/(TP+FN)
Example: Percentage of patients correctly predicted as having certain disease, or
percentage of transactions correctly predicted as fraud.
21
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Try it Out
Predicted Values
Negative Positive
Actual
Values
Negative 765 55
Positive 154 26
Accuracy = (765+26)/1000 = 79.1% Accuracy = (605+138)/1000 = 74.3%
Specificity = 765/(765+55) = 0.933
Sensitivity= 26/(26+154) = 0.14
Specificity = 605/(605+215) = 0.738
Sensitivity = 138/(42+138) = 0.767
Model 1 Model 2
Predicted Values
Negative Positive
Actual
Values
Negative 605 215
Positive 42 138
22
One may be more interested in sensitivity, e.g., in identifying patients who are
going to get a certain disease or a transaction being a fraud.
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Selecting the Best Model
Accuracy Model 1a Model 1b Model2a Model2b Model3
Training 80.5 (± 0.3) 83.5 (± 2.3) 82.5 (± 1.35) 81.5 (± 0.3) 83.2 (± 1.3)
Testing 77.8 (± 0.25) 78.5 (± 3.8) 79.8 (± 0.22) 75.8 (± 0.15) 80.7 (± 0.28)
• One may try different models
• Same model with different hyper-parameters
• Need to compare across the various models before choosing the best model
23
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Model Deployment
Model Deployment
24
Consideration examples:
• Communication plans to staff or users of the analytics model, timeline
and action items for the deployment.
• Which teams are involved in the deployment? Are the various teams
aware and sufficiently engaged?
• When, where and how to deploy the model?
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Model Monitoring and Maintenance
Model Monitoring & Maintenance
• After the model is deployed, the model has to be monitored to
ensure that it is working the way it is intended.
• It needs to be maintained so that it is updated and relevant.
• New data may be added to the older data (some cases but not
always) to retrain the whole model
• Some models allow incremental training, i.e., do not need to
retrain the whole model.
25
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
How Often Should Models be Updated?
Model review & update may be performed at:
• Regular Interval
• Performance has degraded
• Ad hoc
• New and better algorithms are available
26
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
Stages of Predictive Analytics Model Development
Business Objectives and Problem
Statement Identification
Data Collection, Exploration and
Preparation
Model Development & Testing
Model Deployment
Model Monitoring & Maintenance
27
© 2022 National University of Singapore. All Rights Reserved
#ISSLearningFest
https://www.iss.nus.edu.sg/
28
Give Us Your Feedback
#ISSLearningFest
Day 2 Programme
29
Thank You!
#ISSLearningFest 30
Q & A
#ISSLearningFest 31
Predictive Analytics Talk
Survey
#ISSLearningFest 32
https://forms.gle/2zYmocqC7AyCu6ua9
Thank You!
#ISSLearningFest 33
brian_ang@nus.edu.sg

More Related Content

Similar to Predictive Analytics

Data Driven Engineering 2014
Data Driven Engineering 2014Data Driven Engineering 2014
Data Driven Engineering 2014Roger Barga
 
GridMAP: Next generation energy analysis tools.
GridMAP: Next generation energy analysis tools.GridMAP: Next generation energy analysis tools.
GridMAP: Next generation energy analysis tools.Iain Beveridge
 
Data-science-manager.docx
Data-science-manager.docxData-science-manager.docx
Data-science-manager.docxbeherajisu9
 
Egypt hackathon 2014 analytics & spss session
Egypt hackathon 2014   analytics & spss sessionEgypt hackathon 2014   analytics & spss session
Egypt hackathon 2014 analytics & spss sessionM Baddar
 
Selling commercial Solar +/or Energy Storage solutions? You need GridMAP!
Selling commercial Solar +/or Energy Storage solutions? You need GridMAP!    Selling commercial Solar +/or Energy Storage solutions? You need GridMAP!
Selling commercial Solar +/or Energy Storage solutions? You need GridMAP! Iain Beveridge
 
"From Insights to Production with Big Data Analytics", Eliano Marques, Senior...
"From Insights to Production with Big Data Analytics", Eliano Marques, Senior..."From Insights to Production with Big Data Analytics", Eliano Marques, Senior...
"From Insights to Production with Big Data Analytics", Eliano Marques, Senior...Dataconomy Media
 
Agile Mumbai 2022 - Ashwinee Singh | Agile in AI or AI in Agile?
Agile Mumbai 2022 - Ashwinee Singh | Agile in AI or AI in Agile?Agile Mumbai 2022 - Ashwinee Singh | Agile in AI or AI in Agile?
Agile Mumbai 2022 - Ashwinee Singh | Agile in AI or AI in Agile?AgileNetwork
 
Hybrid-Training & Placement Management with Prediction System
Hybrid-Training & Placement Management with Prediction SystemHybrid-Training & Placement Management with Prediction System
Hybrid-Training & Placement Management with Prediction SystemIRJET Journal
 
Succeed in AI projects
Succeed in AI projectsSucceed in AI projects
Succeed in AI projectsSubhendu Dey
 
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...Edureka!
 
Big Data Analytics: Challenge or Opportunity?
Big Data Analytics: Challenge or Opportunity?Big Data Analytics: Challenge or Opportunity?
Big Data Analytics: Challenge or Opportunity?NUS-ISS
 
AI Class Topic 3: Building Machine Learning Predictive Systems (Predictive Ma...
AI Class Topic 3: Building Machine Learning Predictive Systems (Predictive Ma...AI Class Topic 3: Building Machine Learning Predictive Systems (Predictive Ma...
AI Class Topic 3: Building Machine Learning Predictive Systems (Predictive Ma...Value Amplify Consulting
 
PROMISE 2011: What Prediction Model Should Be?
PROMISE 2011: What Prediction Model Should Be?PROMISE 2011: What Prediction Model Should Be?
PROMISE 2011: What Prediction Model Should Be?CS, NcState
 
Machine Learning Application to Manufacturing using Tableau, Tableau and Goog...
Machine Learning Application to Manufacturing using Tableau, Tableau and Goog...Machine Learning Application to Manufacturing using Tableau, Tableau and Goog...
Machine Learning Application to Manufacturing using Tableau, Tableau and Goog...Manju Devadas
 
Forecasting :- Introduction & its Applications
Forecasting :-  Introduction & its ApplicationsForecasting :-  Introduction & its Applications
Forecasting :- Introduction & its ApplicationsDeepam Goyal
 

Similar to Predictive Analytics (20)

Business analytics
Business analytics Business analytics
Business analytics
 
Data Driven Engineering 2014
Data Driven Engineering 2014Data Driven Engineering 2014
Data Driven Engineering 2014
 
GridMAP: Next generation energy analysis tools.
GridMAP: Next generation energy analysis tools.GridMAP: Next generation energy analysis tools.
GridMAP: Next generation energy analysis tools.
 
Data-science-manager.docx
Data-science-manager.docxData-science-manager.docx
Data-science-manager.docx
 
Egypt hackathon 2014 analytics & spss session
Egypt hackathon 2014   analytics & spss sessionEgypt hackathon 2014   analytics & spss session
Egypt hackathon 2014 analytics & spss session
 
Selling commercial Solar +/or Energy Storage solutions? You need GridMAP!
Selling commercial Solar +/or Energy Storage solutions? You need GridMAP!    Selling commercial Solar +/or Energy Storage solutions? You need GridMAP!
Selling commercial Solar +/or Energy Storage solutions? You need GridMAP!
 
Big Data Analytics: From Insights to Production
Big Data Analytics: From Insights to ProductionBig Data Analytics: From Insights to Production
Big Data Analytics: From Insights to Production
 
"From Insights to Production with Big Data Analytics", Eliano Marques, Senior...
"From Insights to Production with Big Data Analytics", Eliano Marques, Senior..."From Insights to Production with Big Data Analytics", Eliano Marques, Senior...
"From Insights to Production with Big Data Analytics", Eliano Marques, Senior...
 
1120 track1 taylor
1120 track1 taylor1120 track1 taylor
1120 track1 taylor
 
1650 track2 anderberg
1650 track2 anderberg1650 track2 anderberg
1650 track2 anderberg
 
Agile Mumbai 2022 - Ashwinee Singh | Agile in AI or AI in Agile?
Agile Mumbai 2022 - Ashwinee Singh | Agile in AI or AI in Agile?Agile Mumbai 2022 - Ashwinee Singh | Agile in AI or AI in Agile?
Agile Mumbai 2022 - Ashwinee Singh | Agile in AI or AI in Agile?
 
Sukhdeep
SukhdeepSukhdeep
Sukhdeep
 
Hybrid-Training & Placement Management with Prediction System
Hybrid-Training & Placement Management with Prediction SystemHybrid-Training & Placement Management with Prediction System
Hybrid-Training & Placement Management with Prediction System
 
Succeed in AI projects
Succeed in AI projectsSucceed in AI projects
Succeed in AI projects
 
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
Data Science For Beginners | Who Is A Data Scientist? | Data Science Tutorial...
 
Big Data Analytics: Challenge or Opportunity?
Big Data Analytics: Challenge or Opportunity?Big Data Analytics: Challenge or Opportunity?
Big Data Analytics: Challenge or Opportunity?
 
AI Class Topic 3: Building Machine Learning Predictive Systems (Predictive Ma...
AI Class Topic 3: Building Machine Learning Predictive Systems (Predictive Ma...AI Class Topic 3: Building Machine Learning Predictive Systems (Predictive Ma...
AI Class Topic 3: Building Machine Learning Predictive Systems (Predictive Ma...
 
PROMISE 2011: What Prediction Model Should Be?
PROMISE 2011: What Prediction Model Should Be?PROMISE 2011: What Prediction Model Should Be?
PROMISE 2011: What Prediction Model Should Be?
 
Machine Learning Application to Manufacturing using Tableau, Tableau and Goog...
Machine Learning Application to Manufacturing using Tableau, Tableau and Goog...Machine Learning Application to Manufacturing using Tableau, Tableau and Goog...
Machine Learning Application to Manufacturing using Tableau, Tableau and Goog...
 
Forecasting :- Introduction & its Applications
Forecasting :-  Introduction & its ApplicationsForecasting :-  Introduction & its Applications
Forecasting :- Introduction & its Applications
 

More from NUS-ISS

Designing Impactful Services and User Experience - Lim Wee Khee
Designing Impactful Services and User Experience - Lim Wee KheeDesigning Impactful Services and User Experience - Lim Wee Khee
Designing Impactful Services and User Experience - Lim Wee KheeNUS-ISS
 
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...NUS-ISS
 
How the World's Leading Independent Automotive Distributor is Reinventing Its...
How the World's Leading Independent Automotive Distributor is Reinventing Its...How the World's Leading Independent Automotive Distributor is Reinventing Its...
How the World's Leading Independent Automotive Distributor is Reinventing Its...NUS-ISS
 
The Importance of Cybersecurity for Digital Transformation
The Importance of Cybersecurity for Digital TransformationThe Importance of Cybersecurity for Digital Transformation
The Importance of Cybersecurity for Digital TransformationNUS-ISS
 
Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...
Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...
Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...NUS-ISS
 
Understanding GenAI/LLM and What is Google Offering - Felix Goh
Understanding GenAI/LLM and What is Google Offering - Felix GohUnderstanding GenAI/LLM and What is Google Offering - Felix Goh
Understanding GenAI/LLM and What is Google Offering - Felix GohNUS-ISS
 
Digital Product-Centric Enterprise and Enterprise Architecture - Tan Eng Tsze
Digital Product-Centric Enterprise and Enterprise Architecture - Tan Eng TszeDigital Product-Centric Enterprise and Enterprise Architecture - Tan Eng Tsze
Digital Product-Centric Enterprise and Enterprise Architecture - Tan Eng TszeNUS-ISS
 
Emerging & Future Technology - How to Prepare for the Next 10 Years of Radica...
Emerging & Future Technology - How to Prepare for the Next 10 Years of Radica...Emerging & Future Technology - How to Prepare for the Next 10 Years of Radica...
Emerging & Future Technology - How to Prepare for the Next 10 Years of Radica...NUS-ISS
 
Beyond the Hype: What Generative AI Means for the Future of Work - Damien Cum...
Beyond the Hype: What Generative AI Means for the Future of Work - Damien Cum...Beyond the Hype: What Generative AI Means for the Future of Work - Damien Cum...
Beyond the Hype: What Generative AI Means for the Future of Work - Damien Cum...NUS-ISS
 
Supply Chain Security for Containerised Workloads - Lee Chuk Munn
Supply Chain Security for Containerised Workloads - Lee Chuk MunnSupply Chain Security for Containerised Workloads - Lee Chuk Munn
Supply Chain Security for Containerised Workloads - Lee Chuk MunnNUS-ISS
 
Future of Learning - Yap Aye Wee.pdf
Future of Learning - Yap Aye Wee.pdfFuture of Learning - Yap Aye Wee.pdf
Future of Learning - Yap Aye Wee.pdfNUS-ISS
 
Future of Learning - Khoong Chan Meng
Future of Learning - Khoong Chan MengFuture of Learning - Khoong Chan Meng
Future of Learning - Khoong Chan MengNUS-ISS
 
Site Reliability Engineer (SRE), We Keep The Lights On 24/7
Site Reliability Engineer (SRE), We Keep The Lights On 24/7Site Reliability Engineer (SRE), We Keep The Lights On 24/7
Site Reliability Engineer (SRE), We Keep The Lights On 24/7NUS-ISS
 
Product Management in The Trenches for a Cloud Service
Product Management in The Trenches for a Cloud ServiceProduct Management in The Trenches for a Cloud Service
Product Management in The Trenches for a Cloud ServiceNUS-ISS
 
Overview of Data and Analytics Essentials and Foundations
Overview of Data and Analytics Essentials and FoundationsOverview of Data and Analytics Essentials and Foundations
Overview of Data and Analytics Essentials and FoundationsNUS-ISS
 
Feature Engineering for IoT
Feature Engineering for IoTFeature Engineering for IoT
Feature Engineering for IoTNUS-ISS
 
Master of Technology in Software Engineering
Master of Technology in Software EngineeringMaster of Technology in Software Engineering
Master of Technology in Software EngineeringNUS-ISS
 
Master of Technology in Enterprise Business Analytics
Master of Technology in Enterprise Business AnalyticsMaster of Technology in Enterprise Business Analytics
Master of Technology in Enterprise Business AnalyticsNUS-ISS
 
Diagnosing Complex Problems Using System Archetypes
Diagnosing Complex Problems Using System ArchetypesDiagnosing Complex Problems Using System Archetypes
Diagnosing Complex Problems Using System ArchetypesNUS-ISS
 
Satisfying the ‘-ilities’ of an Enterprise Cloud Service
Satisfying the ‘-ilities’ of an Enterprise Cloud ServiceSatisfying the ‘-ilities’ of an Enterprise Cloud Service
Satisfying the ‘-ilities’ of an Enterprise Cloud ServiceNUS-ISS
 

More from NUS-ISS (20)

Designing Impactful Services and User Experience - Lim Wee Khee
Designing Impactful Services and User Experience - Lim Wee KheeDesigning Impactful Services and User Experience - Lim Wee Khee
Designing Impactful Services and User Experience - Lim Wee Khee
 
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
Upskilling the Evolving Workforce with Digital Fluency for Tomorrow's Challen...
 
How the World's Leading Independent Automotive Distributor is Reinventing Its...
How the World's Leading Independent Automotive Distributor is Reinventing Its...How the World's Leading Independent Automotive Distributor is Reinventing Its...
How the World's Leading Independent Automotive Distributor is Reinventing Its...
 
The Importance of Cybersecurity for Digital Transformation
The Importance of Cybersecurity for Digital TransformationThe Importance of Cybersecurity for Digital Transformation
The Importance of Cybersecurity for Digital Transformation
 
Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...
Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...
Architecting CX Measurement Frameworks and Ensuring CX Metrics are fit for Pu...
 
Understanding GenAI/LLM and What is Google Offering - Felix Goh
Understanding GenAI/LLM and What is Google Offering - Felix GohUnderstanding GenAI/LLM and What is Google Offering - Felix Goh
Understanding GenAI/LLM and What is Google Offering - Felix Goh
 
Digital Product-Centric Enterprise and Enterprise Architecture - Tan Eng Tsze
Digital Product-Centric Enterprise and Enterprise Architecture - Tan Eng TszeDigital Product-Centric Enterprise and Enterprise Architecture - Tan Eng Tsze
Digital Product-Centric Enterprise and Enterprise Architecture - Tan Eng Tsze
 
Emerging & Future Technology - How to Prepare for the Next 10 Years of Radica...
Emerging & Future Technology - How to Prepare for the Next 10 Years of Radica...Emerging & Future Technology - How to Prepare for the Next 10 Years of Radica...
Emerging & Future Technology - How to Prepare for the Next 10 Years of Radica...
 
Beyond the Hype: What Generative AI Means for the Future of Work - Damien Cum...
Beyond the Hype: What Generative AI Means for the Future of Work - Damien Cum...Beyond the Hype: What Generative AI Means for the Future of Work - Damien Cum...
Beyond the Hype: What Generative AI Means for the Future of Work - Damien Cum...
 
Supply Chain Security for Containerised Workloads - Lee Chuk Munn
Supply Chain Security for Containerised Workloads - Lee Chuk MunnSupply Chain Security for Containerised Workloads - Lee Chuk Munn
Supply Chain Security for Containerised Workloads - Lee Chuk Munn
 
Future of Learning - Yap Aye Wee.pdf
Future of Learning - Yap Aye Wee.pdfFuture of Learning - Yap Aye Wee.pdf
Future of Learning - Yap Aye Wee.pdf
 
Future of Learning - Khoong Chan Meng
Future of Learning - Khoong Chan MengFuture of Learning - Khoong Chan Meng
Future of Learning - Khoong Chan Meng
 
Site Reliability Engineer (SRE), We Keep The Lights On 24/7
Site Reliability Engineer (SRE), We Keep The Lights On 24/7Site Reliability Engineer (SRE), We Keep The Lights On 24/7
Site Reliability Engineer (SRE), We Keep The Lights On 24/7
 
Product Management in The Trenches for a Cloud Service
Product Management in The Trenches for a Cloud ServiceProduct Management in The Trenches for a Cloud Service
Product Management in The Trenches for a Cloud Service
 
Overview of Data and Analytics Essentials and Foundations
Overview of Data and Analytics Essentials and FoundationsOverview of Data and Analytics Essentials and Foundations
Overview of Data and Analytics Essentials and Foundations
 
Feature Engineering for IoT
Feature Engineering for IoTFeature Engineering for IoT
Feature Engineering for IoT
 
Master of Technology in Software Engineering
Master of Technology in Software EngineeringMaster of Technology in Software Engineering
Master of Technology in Software Engineering
 
Master of Technology in Enterprise Business Analytics
Master of Technology in Enterprise Business AnalyticsMaster of Technology in Enterprise Business Analytics
Master of Technology in Enterprise Business Analytics
 
Diagnosing Complex Problems Using System Archetypes
Diagnosing Complex Problems Using System ArchetypesDiagnosing Complex Problems Using System Archetypes
Diagnosing Complex Problems Using System Archetypes
 
Satisfying the ‘-ilities’ of an Enterprise Cloud Service
Satisfying the ‘-ilities’ of an Enterprise Cloud ServiceSatisfying the ‘-ilities’ of an Enterprise Cloud Service
Satisfying the ‘-ilities’ of an Enterprise Cloud Service
 

Recently uploaded

TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
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
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
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
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
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
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 

Recently uploaded (20)

TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
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
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
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)
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
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
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 

Predictive Analytics

  • 1. Predictive Analytics Dr. Brian ANG Senior Lecturer and Consultant Data Science brian_ang@nus.edu.sg #ISSLearningFest 1
  • 2. © 2022 National University of Singapore. All Rights Reserved What is Predictive Analytics? #ISSLearningFest Higher Profit Cost Savings Better Resource Allocation Better Efficiency Predict or forecast future trends or events, or the likelihood of an event happening Predictive Predictive Analyse currently available data using computational approaches Analytics Analytics To predict or forecast future trends and events based on currently available data. To predict or forecast future trends and events based on currently available data. 2
  • 3. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Example Applications of Predictive Analytics Medical Finance Marketing Sales Forecast Predictive Maintenance Environmental Prediction Icons in this slide deck are from Flaticon.com 3
  • 4. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Stages of Predictive Analytics Model Development Business Objectives and Problem Statement Identification Data Collection, Exploration and Preparation Model Development & Testing Model Deployment Model Monitoring & Maintenance 4
  • 5. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Stages of Predictive Analytics Model Development Business Objectives and Problem Statement Identification • Organisations have to identify the need of the predictive analytics model. This would be more user driven. • Identify the different stakeholders involved and how the predictive analytics model will affect them. • Have to consider cost versus benefit of the model adoption 5
  • 6. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Identifying the Stakeholders Who are the stakeholders? Anyone who has an interest or is affected by the Predictive Analytics project. Internal stakeholders • Project team • Project sponsors • Approval authorities/management • Supporting departments External stakeholders • Vendors • External clients • Other organisations 6
  • 7. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Cost versus Benefit Analysis of Predictive Analytics Models Cost in terms of, e.g., - Infrastructure - Manpower - Maintenance Benefits in terms of, e.g., - Cost savings & efficiency due to better resource allocation using predictive analytics. - Increase in profit due to knowing better which factor contributes to sales 7
  • 8. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Data Collection Data Processing Training and Testing Data Split Data Exploration & Analysis Data Collection, Exploration and Preparation Stages of Predictive Analytics Model Development 8
  • 9. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Data Collection & Sources of Data Data Collection Data Processing Training and Testing Data Split Data Exploration & Analysis Data Collection, Exploration and Preparation Origins • Within the department/organisation • External (affiliated) organisations • Engage vendors for data collection • Open source data • Local and overseas sources 9
  • 10. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Data Exploration & Pre-Processing Data Collection Data Processing Training and Testing Data Split Data Exploration & Analysis Data Collection, Exploration and Preparation • Check whether there are missing data, outliers, erroneous data, etc. • Perform data pre-processing to transform data into a form that can be used for model training. • Current data or new data collected may not be ready for model training. E.g., the correct features or attributes need to be extracted and put into the table columns and rows. 10
  • 11. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Training & Testing Data Split A data set can be divided into the following components: • Training/Development Dataset Used for development of the model during the training phase • Testing/Validation Dataset (hold-out dataset) Used to evaluate how well a model performs on unseen data Data Collection Data Processing Training and Testing Data Split Data Exploration & Analysis Data Collection, Exploration and Preparation 11
  • 12. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Training & Testing Data Split Data Set Training Testing Cross-validation 12 Repeat this N times Present the results as the average of the N runs and with the standard deviation. Random selection
  • 13. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Stages of Predictive Analytics Model Development Model Development Training Data Testing Data Prediction Output Testing Data Model Development & Testing Accepted model should perform well on both the training and testing datasets Proposed Model Proposed Model Accepted Model 13
  • 14. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Predictive Analytics Model Examples • To predict numeric quantities • E.g., predict revenue based on marketing expenditure, car sales based on car features. Regression 14 • Predict categorical quantities • E.g., predict whether a customer will buy a product or not. Among a few diseases, which disease is a patient likely to contract. Classification • Predict future quantities based previous trend • E.g., forecast next few months temperature based on historical data. Forecasting
  • 15. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Regression Model Examples Fit a straight line for a given set of points y=bo+b1x1+b2x2+b3x3 +b4x4 +b5x5 + e y=bo+b1x1+b2𝑥 + e Simple Linear Regression Model Quadratic regression model Multiple Linear Regression model 15 y=bo+b1x1+ e 0 10000 20000 30000 40000 50000 60000 70000 80000 90000 10 30 50 70 Healthcare Cost Age Predicted Value Actual Value Residual
  • 16. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Classification Model Examples Image from: https://www.ibm.com/cloud/blog/ai-vs-machine-learning-vs-deep-learning-vs-neural-networks Image from: https://en.wikipedia.org/wiki/Random_forest 16
  • 17. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Forecasting Model Examples Auto-Regressive Integrated Moving Average (ARIMA) or the Seasonal ARIMA models (p,d,q) (P,D,Q)s Seasonal Component Non-Seasonal Component 17
  • 18. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Evaluation of Regression & Time Series Models 𝑅𝑜𝑜𝑡 𝑀𝑒𝑎𝑛 𝑆𝑞𝑢𝑎𝑟𝑒 𝐸𝑟𝑟𝑜𝑟 𝑅𝑀𝑆𝐸 ∑ 𝑒 𝑛 𝑀𝑒𝑎𝑛 𝐴𝑏𝑠𝑜𝑙𝑢𝑡𝑒 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 𝐷𝑒𝑣𝑖𝑎𝑡𝑖𝑜𝑛 𝑀𝐴𝑃𝐷 100% 𝑛 | 𝑒 𝑦 | Error: 𝑒 𝑦 𝑦 18
  • 19. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Evaluation of Classification Models 𝑛 • Accuracy = 𝑐 × 100% • Is accuracy the only evaluation metric? Where - c is the total number of correctly classified samples - n is the total number of samples 19
  • 20. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Confusion Matrix Predicted Values Negative Positive Actual Values Negative Positive We can further analyze the model performance by breaking down the results. Consider a Binary Classification Problem 20 True Negative (TN) True Positive (TP) False Negative (FN) False Positive (FP)
  • 21. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Confusion Matrix Predicted Values Negative Positive Actual Values Negative True Negative (TN) False Positive (FP) Positive False Negative (FN) True Positive (TP) - Accuracy = (TP+TN)/(TP+TN+FP+FN) % - Specificity = TN/(TN+FP) Example: Percentage of patients correctly predicted as not having a certain disease, or percentage of transactions correctly predicted as not fraud. - Sensitivity = TP/(TP+FN) Example: Percentage of patients correctly predicted as having certain disease, or percentage of transactions correctly predicted as fraud. 21
  • 22. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Try it Out Predicted Values Negative Positive Actual Values Negative 765 55 Positive 154 26 Accuracy = (765+26)/1000 = 79.1% Accuracy = (605+138)/1000 = 74.3% Specificity = 765/(765+55) = 0.933 Sensitivity= 26/(26+154) = 0.14 Specificity = 605/(605+215) = 0.738 Sensitivity = 138/(42+138) = 0.767 Model 1 Model 2 Predicted Values Negative Positive Actual Values Negative 605 215 Positive 42 138 22 One may be more interested in sensitivity, e.g., in identifying patients who are going to get a certain disease or a transaction being a fraud.
  • 23. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Selecting the Best Model Accuracy Model 1a Model 1b Model2a Model2b Model3 Training 80.5 (± 0.3) 83.5 (± 2.3) 82.5 (± 1.35) 81.5 (± 0.3) 83.2 (± 1.3) Testing 77.8 (± 0.25) 78.5 (± 3.8) 79.8 (± 0.22) 75.8 (± 0.15) 80.7 (± 0.28) • One may try different models • Same model with different hyper-parameters • Need to compare across the various models before choosing the best model 23
  • 24. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Model Deployment Model Deployment 24 Consideration examples: • Communication plans to staff or users of the analytics model, timeline and action items for the deployment. • Which teams are involved in the deployment? Are the various teams aware and sufficiently engaged? • When, where and how to deploy the model?
  • 25. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Model Monitoring and Maintenance Model Monitoring & Maintenance • After the model is deployed, the model has to be monitored to ensure that it is working the way it is intended. • It needs to be maintained so that it is updated and relevant. • New data may be added to the older data (some cases but not always) to retrain the whole model • Some models allow incremental training, i.e., do not need to retrain the whole model. 25
  • 26. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest How Often Should Models be Updated? Model review & update may be performed at: • Regular Interval • Performance has degraded • Ad hoc • New and better algorithms are available 26
  • 27. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest Stages of Predictive Analytics Model Development Business Objectives and Problem Statement Identification Data Collection, Exploration and Preparation Model Development & Testing Model Deployment Model Monitoring & Maintenance 27
  • 28. © 2022 National University of Singapore. All Rights Reserved #ISSLearningFest https://www.iss.nus.edu.sg/ 28
  • 29. Give Us Your Feedback #ISSLearningFest Day 2 Programme 29
  • 32. Predictive Analytics Talk Survey #ISSLearningFest 32 https://forms.gle/2zYmocqC7AyCu6ua9