SlideShare a Scribd company logo
Simplified Analytics
Predictive Analytics: Primer
Sep 27, 2011
What is Predictive Analytics?
Various way of doing it
Forecasting Techniques
Decision Trees
Regression
How to find out if a method works?
How to deploy them in real world?
When to do Predictive Analytics vs. not?
REFERENCES
Intended for Knowledge Sharing
only.
2
Intended for Knowledge Sharing
only. 2
CONTENTS
Intended for Knowledge Sharing
only.
3
Intended for Knowledge Sharing
only. 3
What is Predictive Analytics?
Prediction of future value of variable of interest(predicted) from past values of either
itself or other explanatory variables(predictor)…
eg. Stock price movements, credit card default rates, inventory management, etc.
Concepts of Time Windows..
Other time components..
• Trend – long term organic growth
• Seasonality – specific fluctuations repeating for certain time points(months, days) every year
• Development window (Jan’08 – Jun’10)
• Observe the predicted variable (stock price,
default rate, etc.) and /or get the relationship with
predictor variables
• Validation window (Jul’10 – Dec’10)
• Check if prediction accuracy within acceptable
limits
• If not, improve the prediction framework
• Prediction window (Jan’11 – May’11)
• Use the predictive method to get the projections
• Strategize business actions based on projections
0.00
0.02
0.04
0.06
0.08
0.10
0.12
Rev($Bn)
Development Window Validation
Window
Prediction
Window
Intended for Knowledge Sharing
only.
4
Intended for Knowledge Sharing
only. 4
Various ways of doing it
All methods can be grouped in three broad categories..
• Simple Forecasting Techniques
• Decision Trees
• Regression
Simple Forecasting Techniques:
• Moving Averages – Moving Averages over last ‘x’ months
• Decomposition Method – Tease out Trend and Seasonality components for use in predictions
• Holt Exponential Smoothing Techniques –Apply Trend and Seasonality to Exponential Averages.
Exponential Averages assign progressively lesser weights to older observations.
Decision Trees:
• Breaks down population into smaller buckets and predicts for each buckets. Yield much higher
prediction accuracy than simple forecasting techniques.
Regression:
• Establishes a mathematical relationship between ‘predicted’ and ‘predictor’, which can then be
used to predict future values from known values of ‘predictor’.
Intended for Knowledge Sharing
only.
5
Intended for Knowledge Sharing
only. 5
Simple Forecasting Techniques
Simplest method of forecasting but cannot explain why it predicts certain value...
Moving Averages:
Prediction(t) = Average(Value at t-1 to t-x)
For next month, shift average window by 1 month and so on.
Decomposition Method:
Prediction(t) = Trended value(T)*Seasonality Index(SI)
-> T= Actual value in last available month*Growth factor;
and Growth factor = (Actual(t) – Actual(t-1))/Actual(t-1)
-> SI = average of all Jan/average of all months;
SI has to be calculated separately for each of 12 months
and then SI relevant for “being predicted” month applied
Holt Exponential Smoothing:
Prediction(t) = (Smoothed series+ Trend(T))*SI
->Smoothed series = Smoothing Factor * Actual last month +
(1-Smoothing Factor) * Smoothed for last month and so on
350
400
450
500
550
600
650
700
#International airline passengers('000)
Actuals Moving Averages(12 months)
Decomposition Method Holt-Winters
• Begins with entire population and splits on ‘predicted’ variable(e.g., default rate) by a predictor variable,
e.g. Customer type – Subprime or Premium
• Checks if the difference in ‘predicted’(default rate) is statistically significant using Chi-square or t-test
• If the difference is significant, then it splits the nodes* by other variables,
• If not, it goes back and tries to ‘significantly’ split the population by another variable
How long does it keep splitting?
• Until it finds significant splits based on the Chi-square or t-tests
• Until it hits max number of nodes* (manageable number for business actions)
• When the counts in lower most nodes becomes less than 5%
*Each subgroup resulting from split is called a node
Intended for Knowledge Sharing
only.
6
Intended for Knowledge Sharing
only. 6
Decision Trees
Higher prediction accuracy and explain ability, since prediction is done at member sub-
groups level…
All Credit Card holders
Default rate: 2%
Sub-prime
Default rate: 5%
Premium
Default rate: 1%
FICO <250
Default rate: 8%
FICO: 250 to 400
Default rate: 6%
FICO>400
Default rate: 4%
Monthly spend <$500
Default rate: 0.5%
Monthly spend >$500
Default rate: 1.5%
nodes
• Estimates degree of relationship between the “predicted” variable and the “predictor” variables
e.g. Credit Card default = intercept + b1*bankruptcy +b2*payment to income ratio
->intercept – unexplained factor
->b1,b2– strength of relationship- how much “predicted”((default probability) changes with unit
changes in “predictor” values(bankruptcy or payment to income ratio)
What are the various types of regression?
Intended for Knowledge Sharing
only.
7
Intended for Knowledge Sharing
only. 7
Regression
Highest prediction accuracy and explain ability, since prediction is done at individual
member level…
Regression Methods
Linear Logistic ARIMA
When they should be used?
To predict value of a variable,
e.g., Credit Card spend, inventory
quantity
To predict probability of certain event
happening, e.g., credit card default, inventory
shortage
To predict future values from historical
figures, e.g., future stock price from
past figures
Inherent assumptions in the
technique
Predicted variable follows "normal
distribution" meaning population
has most members having about
average values and lesser counts
towards extremes
Probability of event happening follows
"binomial distribution" meaning probability
of observing 'x' defaulters by picking 'N'
members is highest if the proportion of
defaulters in population is (x/N)
‘Stationary time series’, i.e., the
structure of time series doesn’t change
significantly, i.e., increase in volatility
or change in growth rate itself
Intended for Knowledge Sharing
only.
8
Intended for Knowledge Sharing
only. 8
How to find if a method works?
Various measurement diagnostics can be used to check prediction accuracy…
• Root Mean Square Error (RMSE): Average difference between actual and predicted values.
RMSE = average of square(actual – predicted)
• Error rate(%): Tells what is the error relative to actual values of predicted variable.
Error rate (%) = RMSE/average of actuals
Decision Trees and Regression models have more sophisticated diagnostics…
• R-square: Tells how much of the variance in “predicted” variable is captured by the model.
• Rank Order: Checks if the predicted values correlate with actual values.
Steps:
• Sort the population by predicted values
• Split into groups with equal number of obs, generally ten groups or deciles
• Get the average of both actual and predicted values for each group
• Check if both averages are gradually decreasing from the top group to bottom
• Gains Chart: Useful mostly in logistic regression models. Tells if most of the defaulters are being captured in
top groups itself. If not, models aren’t giving highest probability to actual defaulters and so models needs to
be revisited.
• Akaike Information Criteria(AIC): Helps in selecting the most “parsimonious” regression models- maximum
information capture with least number of predictors.
Intended for Knowledge Sharing
only.
9
Intended for Knowledge Sharing
only. 9
How to deploy them in real world?
Simple Forecasting Techniques are used to predict at portfolio level only, e.g., predictions for
Auto-Lease portfolio’s loss rates
but both Decision Trees and Regression Models require separate infrastructure to get deployed
for real time/non-real time predictions…
Decision Trees is used as a “rule engine”. Every customer will fall into one of the nodes and the
prediction for that node is used to act on this customer’s request, e.g., Sub-prime customer with
FICO<250 will be targeted even when he is just 1 payment due, vs. a premium customer in high
customer will be given leverage to 4 payments due.
Regression Model gives “account level” estimates which are then used to act on customer’s
request, e.g., Fraud models, etc. Models have to run every time a customer transacts.
OPPORTUNITY SIZING
MONTH 1 MONTH 2 MONTH 3
FT 1 FT2
Is ROI
acceptable?
MIN COUNT
REQUIREMENTS
MMF
NO MMF
Is minimum
count
available?
REQUIRED ACCURACY
OF PREDICTION
Prediction
accuracy
unsatisfactory?
CONSTRAINTS EXPLANATION QUESTIONS
Intended for Knowledge Sharing
only. 10
When to do Predictive Analytics vs. not?
Intended for Knowledge Sharing
only. 11
REFERENCES
Simple Forecasting Techniques
http://itl.nist.gov/div898/handbook/pmc/section4/pmc4.htm
Binomial Distributions
http://www.itl.nist.gov/div898/handbook/eda/section3/eda366i.htm
Exponential Smoothing
http://forecasters.org/pdfs/foresight/free/Issue19_goodwin.pdf
Decision Trees
http://www.salford-systems.com/resources/whitepapers/index.html
Linear Regression
http://faculty.chass.ncsu.edu/garson/PA765/regress.htm
Logistic Regression
http://faculty.chass.ncsu.edu/garson/PA765/logistic.htm
ARIMA Regression(also called as Box-Jenkins methodology)
http://www.itl.nist.gov/div898/handbook/pmc/section4/pmc445.htm

More Related Content

What's hot

Default of Credit Card Payments
Default of Credit Card PaymentsDefault of Credit Card Payments
Default of Credit Card Payments
Vikas Virani
 
CECL Project Overview
CECL Project OverviewCECL Project Overview
CECL Project Overview
Rohit Khurana
 
Scope and objective of the assignment
Scope and objective of the assignmentScope and objective of the assignment
Scope and objective of the assignmentGourab Chakraborty
 
IRJET- Prediction of Credit Risks in Lending Bank Loans
IRJET- Prediction of Credit Risks in Lending Bank LoansIRJET- Prediction of Credit Risks in Lending Bank Loans
IRJET- Prediction of Credit Risks in Lending Bank Loans
IRJET Journal
 
Credit defaulter analysis
Credit defaulter analysisCredit defaulter analysis
Credit defaulter analysis
Nimai Chand Das Adhikari
 
Reduction in customer complaints - Mortgage Industry
Reduction in customer complaints - Mortgage IndustryReduction in customer complaints - Mortgage Industry
Reduction in customer complaints - Mortgage Industry
Pranov Mishra
 
Sales Performance Deep Dive and Forecast: A ML Driven Analytics Solution
Sales Performance Deep Dive and Forecast: A ML Driven Analytics SolutionSales Performance Deep Dive and Forecast: A ML Driven Analytics Solution
Sales Performance Deep Dive and Forecast: A ML Driven Analytics Solution
Pranov Mishra
 
Bank churn with Data Science
Bank churn with Data ScienceBank churn with Data Science
Bank churn with Data Science
Carolyn Knight
 
Classes of Model
Classes of ModelClasses of Model
Classes of Model
Megha Sharma
 
What Is a Model, Anyhow?
What Is a Model, Anyhow?What Is a Model, Anyhow?
What Is a Model, Anyhow?
Bill Cassill
 
Summer 07-mfin7011-tang1922
Summer 07-mfin7011-tang1922Summer 07-mfin7011-tang1922
Summer 07-mfin7011-tang1922
stone55
 
Approach to BSA/AML Rule Thresholds
Approach to BSA/AML Rule ThresholdsApproach to BSA/AML Rule Thresholds
Approach to BSA/AML Rule Thresholds
Mayank Johri
 
Prediction of customer propensity to churn - Telecom Industry
Prediction of customer propensity to churn - Telecom IndustryPrediction of customer propensity to churn - Telecom Industry
Prediction of customer propensity to churn - Telecom Industry
Pranov Mishra
 
Default Credit Card Prediction
Default Credit Card PredictionDefault Credit Card Prediction
Default Credit Card Prediction
Alexandre Pinto
 
Foundational Methodology for Data Science
Foundational Methodology for Data ScienceFoundational Methodology for Data Science
Foundational Methodology for Data ScienceJohn B. Rollins, Ph.D.
 
Predictive data analytics models and their applications
Predictive data analytics models and their applicationsPredictive data analytics models and their applications
Predictive data analytics models and their applications
Bharathi Raja Asoka Chakravarthi
 
3rd alex marketing club (pharmaceutical forecasting) dr. ahmed sham'a
3rd  alex marketing club (pharmaceutical forecasting) dr. ahmed sham'a3rd  alex marketing club (pharmaceutical forecasting) dr. ahmed sham'a
3rd alex marketing club (pharmaceutical forecasting) dr. ahmed sham'a
Mahmoud Bahgat
 
Data Analysis
Data AnalysisData Analysis
Data Analysis
sikander kushwaha
 

What's hot (20)

Default of Credit Card Payments
Default of Credit Card PaymentsDefault of Credit Card Payments
Default of Credit Card Payments
 
CECL Project Overview
CECL Project OverviewCECL Project Overview
CECL Project Overview
 
IJCS_37_4_06
IJCS_37_4_06IJCS_37_4_06
IJCS_37_4_06
 
Scope and objective of the assignment
Scope and objective of the assignmentScope and objective of the assignment
Scope and objective of the assignment
 
IRJET- Prediction of Credit Risks in Lending Bank Loans
IRJET- Prediction of Credit Risks in Lending Bank LoansIRJET- Prediction of Credit Risks in Lending Bank Loans
IRJET- Prediction of Credit Risks in Lending Bank Loans
 
Credit defaulter analysis
Credit defaulter analysisCredit defaulter analysis
Credit defaulter analysis
 
Reduction in customer complaints - Mortgage Industry
Reduction in customer complaints - Mortgage IndustryReduction in customer complaints - Mortgage Industry
Reduction in customer complaints - Mortgage Industry
 
Sales Performance Deep Dive and Forecast: A ML Driven Analytics Solution
Sales Performance Deep Dive and Forecast: A ML Driven Analytics SolutionSales Performance Deep Dive and Forecast: A ML Driven Analytics Solution
Sales Performance Deep Dive and Forecast: A ML Driven Analytics Solution
 
Bank churn with Data Science
Bank churn with Data ScienceBank churn with Data Science
Bank churn with Data Science
 
Classes of Model
Classes of ModelClasses of Model
Classes of Model
 
Predictive Modelling
Predictive ModellingPredictive Modelling
Predictive Modelling
 
What Is a Model, Anyhow?
What Is a Model, Anyhow?What Is a Model, Anyhow?
What Is a Model, Anyhow?
 
Summer 07-mfin7011-tang1922
Summer 07-mfin7011-tang1922Summer 07-mfin7011-tang1922
Summer 07-mfin7011-tang1922
 
Approach to BSA/AML Rule Thresholds
Approach to BSA/AML Rule ThresholdsApproach to BSA/AML Rule Thresholds
Approach to BSA/AML Rule Thresholds
 
Prediction of customer propensity to churn - Telecom Industry
Prediction of customer propensity to churn - Telecom IndustryPrediction of customer propensity to churn - Telecom Industry
Prediction of customer propensity to churn - Telecom Industry
 
Default Credit Card Prediction
Default Credit Card PredictionDefault Credit Card Prediction
Default Credit Card Prediction
 
Foundational Methodology for Data Science
Foundational Methodology for Data ScienceFoundational Methodology for Data Science
Foundational Methodology for Data Science
 
Predictive data analytics models and their applications
Predictive data analytics models and their applicationsPredictive data analytics models and their applications
Predictive data analytics models and their applications
 
3rd alex marketing club (pharmaceutical forecasting) dr. ahmed sham'a
3rd  alex marketing club (pharmaceutical forecasting) dr. ahmed sham'a3rd  alex marketing club (pharmaceutical forecasting) dr. ahmed sham'a
3rd alex marketing club (pharmaceutical forecasting) dr. ahmed sham'a
 
Data Analysis
Data AnalysisData Analysis
Data Analysis
 

Similar to A high level overview of all that is Analytics

Machine_Learning.pptx
Machine_Learning.pptxMachine_Learning.pptx
Machine_Learning.pptx
VickyKumar131533
 
Lecture3 Modelling Decision Processes
Lecture3 Modelling Decision ProcessesLecture3 Modelling Decision Processes
Lecture3 Modelling Decision ProcessesKodok Ngorex
 
Data Science 1.pdf
Data Science 1.pdfData Science 1.pdf
Data Science 1.pdf
ArchanaArya17
 
Chapter11 projectriskanalysis
Chapter11 projectriskanalysisChapter11 projectriskanalysis
Chapter11 projectriskanalysis
AKSHAYA0000
 
Descriptive Analytics: Data Reduction
 Descriptive Analytics: Data Reduction Descriptive Analytics: Data Reduction
Descriptive Analytics: Data Reduction
Nguyen Ngoc Binh Phuong
 
Intro to ml_2021
Intro to ml_2021Intro to ml_2021
Intro to ml_2021
Sanghamitra Deb
 
What Is Random Forest Classification And How Can It Help Your Business?
What Is Random Forest Classification And How Can It Help Your Business?What Is Random Forest Classification And How Can It Help Your Business?
What Is Random Forest Classification And How Can It Help Your Business?
Smarten Augmented Analytics
 
Introduction to machine learning
Introduction to machine learningIntroduction to machine learning
Introduction to machine learning
Sanghamitra Deb
 
Pentaho Meeting 2008 - Statistics & BI
Pentaho Meeting 2008 - Statistics & BIPentaho Meeting 2008 - Statistics & BI
Pentaho Meeting 2008 - Statistics & BI
Studio Synthesis
 
Exam Short Preparation on Data Analytics
Exam Short Preparation on Data AnalyticsExam Short Preparation on Data Analytics
Exam Short Preparation on Data Analytics
Harsh Parekh
 
Module_6_-_Datamining_tasks_and_tools_uGuVaDv4iv-2.pptx
Module_6_-_Datamining_tasks_and_tools_uGuVaDv4iv-2.pptxModule_6_-_Datamining_tasks_and_tools_uGuVaDv4iv-2.pptx
Module_6_-_Datamining_tasks_and_tools_uGuVaDv4iv-2.pptx
HarshitGoel87
 
Forecasting
ForecastingForecasting
Forecasting
Amit Choudhury
 
MA- UNIT -1.pptx for ipu bba sem 5, complete pdf
MA- UNIT -1.pptx for ipu bba sem 5, complete pdfMA- UNIT -1.pptx for ipu bba sem 5, complete pdf
MA- UNIT -1.pptx for ipu bba sem 5, complete pdf
zm2pfgpcdt
 
Market Research using SPSS _ Edu4Sure Sept 2023.ppt
Market Research using SPSS _ Edu4Sure Sept 2023.pptMarket Research using SPSS _ Edu4Sure Sept 2023.ppt
Market Research using SPSS _ Edu4Sure Sept 2023.ppt
Edu4Sure
 
8 rajib chakravorty risk
8 rajib chakravorty risk8 rajib chakravorty risk
8 rajib chakravorty risk
CCR-interactive
 
Practical Aspects of Stochastic Modeling.pptx
Practical Aspects of Stochastic Modeling.pptxPractical Aspects of Stochastic Modeling.pptx
Practical Aspects of Stochastic Modeling.pptxRon Harasym
 
Data Analytics Using R - Report
Data Analytics Using R - ReportData Analytics Using R - Report
Data Analytics Using R - Report
Akanksha Gohil
 
Module 3 Identifying fraud in forensic analysis.pptx
Module 3 Identifying fraud in forensic analysis.pptxModule 3 Identifying fraud in forensic analysis.pptx
Module 3 Identifying fraud in forensic analysis.pptx
IqbalAli61
 
Statistics For Bi
Statistics For BiStatistics For Bi
Statistics For Bi
Angela Hays
 

Similar to A high level overview of all that is Analytics (20)

Machine_Learning.pptx
Machine_Learning.pptxMachine_Learning.pptx
Machine_Learning.pptx
 
Risk Ana
Risk AnaRisk Ana
Risk Ana
 
Lecture3 Modelling Decision Processes
Lecture3 Modelling Decision ProcessesLecture3 Modelling Decision Processes
Lecture3 Modelling Decision Processes
 
Data Science 1.pdf
Data Science 1.pdfData Science 1.pdf
Data Science 1.pdf
 
Chapter11 projectriskanalysis
Chapter11 projectriskanalysisChapter11 projectriskanalysis
Chapter11 projectriskanalysis
 
Descriptive Analytics: Data Reduction
 Descriptive Analytics: Data Reduction Descriptive Analytics: Data Reduction
Descriptive Analytics: Data Reduction
 
Intro to ml_2021
Intro to ml_2021Intro to ml_2021
Intro to ml_2021
 
What Is Random Forest Classification And How Can It Help Your Business?
What Is Random Forest Classification And How Can It Help Your Business?What Is Random Forest Classification And How Can It Help Your Business?
What Is Random Forest Classification And How Can It Help Your Business?
 
Introduction to machine learning
Introduction to machine learningIntroduction to machine learning
Introduction to machine learning
 
Pentaho Meeting 2008 - Statistics & BI
Pentaho Meeting 2008 - Statistics & BIPentaho Meeting 2008 - Statistics & BI
Pentaho Meeting 2008 - Statistics & BI
 
Exam Short Preparation on Data Analytics
Exam Short Preparation on Data AnalyticsExam Short Preparation on Data Analytics
Exam Short Preparation on Data Analytics
 
Module_6_-_Datamining_tasks_and_tools_uGuVaDv4iv-2.pptx
Module_6_-_Datamining_tasks_and_tools_uGuVaDv4iv-2.pptxModule_6_-_Datamining_tasks_and_tools_uGuVaDv4iv-2.pptx
Module_6_-_Datamining_tasks_and_tools_uGuVaDv4iv-2.pptx
 
Forecasting
ForecastingForecasting
Forecasting
 
MA- UNIT -1.pptx for ipu bba sem 5, complete pdf
MA- UNIT -1.pptx for ipu bba sem 5, complete pdfMA- UNIT -1.pptx for ipu bba sem 5, complete pdf
MA- UNIT -1.pptx for ipu bba sem 5, complete pdf
 
Market Research using SPSS _ Edu4Sure Sept 2023.ppt
Market Research using SPSS _ Edu4Sure Sept 2023.pptMarket Research using SPSS _ Edu4Sure Sept 2023.ppt
Market Research using SPSS _ Edu4Sure Sept 2023.ppt
 
8 rajib chakravorty risk
8 rajib chakravorty risk8 rajib chakravorty risk
8 rajib chakravorty risk
 
Practical Aspects of Stochastic Modeling.pptx
Practical Aspects of Stochastic Modeling.pptxPractical Aspects of Stochastic Modeling.pptx
Practical Aspects of Stochastic Modeling.pptx
 
Data Analytics Using R - Report
Data Analytics Using R - ReportData Analytics Using R - Report
Data Analytics Using R - Report
 
Module 3 Identifying fraud in forensic analysis.pptx
Module 3 Identifying fraud in forensic analysis.pptxModule 3 Identifying fraud in forensic analysis.pptx
Module 3 Identifying fraud in forensic analysis.pptx
 
Statistics For Bi
Statistics For BiStatistics For Bi
Statistics For Bi
 

More from Ramkumar Ravichandran

Risk Product Management - Creating Safe Digital Experiences, Product School 2019
Risk Product Management - Creating Safe Digital Experiences, Product School 2019Risk Product Management - Creating Safe Digital Experiences, Product School 2019
Risk Product Management - Creating Safe Digital Experiences, Product School 2019
Ramkumar Ravichandran
 
Improving AI products with Analytics
Improving AI products with AnalyticsImproving AI products with Analytics
Improving AI products with Analytics
Ramkumar Ravichandran
 
Advancing the analytics maturity curve at your organization
Advancing the analytics maturity curve at your organizationAdvancing the analytics maturity curve at your organization
Advancing the analytics maturity curve at your organization
Ramkumar Ravichandran
 
Advancing Testing Program Maturity in your organization
Advancing Testing Program Maturity in your organizationAdvancing Testing Program Maturity in your organization
Advancing Testing Program Maturity in your organization
Ramkumar Ravichandran
 
Leadership, analytics & you
Leadership, analytics & youLeadership, analytics & you
Leadership, analytics & you
Ramkumar Ravichandran
 
Augment the actionability of Analytics with the “Voice of Customer”
Augment the actionability of Analytics with the “Voice of Customer”Augment the actionability of Analytics with the “Voice of Customer”
Augment the actionability of Analytics with the “Voice of Customer”
Ramkumar Ravichandran
 
Predictive Analytics as a Product
Predictive Analytics as a Product Predictive Analytics as a Product
Predictive Analytics as a Product
Ramkumar Ravichandran
 
Prepping the Analytics organization for Artificial Intelligence evolution
Prepping the Analytics organization for Artificial Intelligence evolutionPrepping the Analytics organization for Artificial Intelligence evolution
Prepping the Analytics organization for Artificial Intelligence evolution
Ramkumar Ravichandran
 
Power of Small Data
Power of Small DataPower of Small Data
Power of Small Data
Ramkumar Ravichandran
 
Optimizing Marketing Decisions
Optimizing Marketing DecisionsOptimizing Marketing Decisions
Optimizing Marketing Decisions
Ramkumar Ravichandran
 
Building & nurturing an Analytics Team
Building & nurturing an Analytics TeamBuilding & nurturing an Analytics Team
Building & nurturing an Analytics Team
Ramkumar Ravichandran
 
Analytics as an enabler of Company Culture
Analytics as an enabler of Company CultureAnalytics as an enabler of Company Culture
Analytics as an enabler of Company Culture
Ramkumar Ravichandran
 
Digital summit Dallas 2015 - Research brings back the 'human' aspect to insights
Digital summit Dallas 2015 - Research brings back the 'human' aspect to insightsDigital summit Dallas 2015 - Research brings back the 'human' aspect to insights
Digital summit Dallas 2015 - Research brings back the 'human' aspect to insights
Ramkumar Ravichandran
 
Social media analytics - a delicious treat, but only when handled like a mast...
Social media analytics - a delicious treat, but only when handled like a mast...Social media analytics - a delicious treat, but only when handled like a mast...
Social media analytics - a delicious treat, but only when handled like a mast...
Ramkumar Ravichandran
 
Optimizing product decisions
Optimizing product decisionsOptimizing product decisions
Optimizing product decisions
Ramkumar Ravichandran
 
Moving beyond numbers
Moving beyond numbersMoving beyond numbers
Moving beyond numbers
Ramkumar Ravichandran
 
Taming the Data Lake with Scalable Metrics Model Framework
Taming the Data Lake with Scalable Metrics Model FrameworkTaming the Data Lake with Scalable Metrics Model Framework
Taming the Data Lake with Scalable Metrics Model Framework
Ramkumar Ravichandran
 
Actionability of insights
Actionability of insights Actionability of insights
Actionability of insights
Ramkumar Ravichandran
 
A/B Testing Best Practices - Do's and Don'ts
A/B Testing Best Practices - Do's and Don'tsA/B Testing Best Practices - Do's and Don'ts
A/B Testing Best Practices - Do's and Don'ts
Ramkumar Ravichandran
 
Transform your Analytics Practice into Insights Practice
Transform your Analytics Practice into Insights PracticeTransform your Analytics Practice into Insights Practice
Transform your Analytics Practice into Insights Practice
Ramkumar Ravichandran
 

More from Ramkumar Ravichandran (20)

Risk Product Management - Creating Safe Digital Experiences, Product School 2019
Risk Product Management - Creating Safe Digital Experiences, Product School 2019Risk Product Management - Creating Safe Digital Experiences, Product School 2019
Risk Product Management - Creating Safe Digital Experiences, Product School 2019
 
Improving AI products with Analytics
Improving AI products with AnalyticsImproving AI products with Analytics
Improving AI products with Analytics
 
Advancing the analytics maturity curve at your organization
Advancing the analytics maturity curve at your organizationAdvancing the analytics maturity curve at your organization
Advancing the analytics maturity curve at your organization
 
Advancing Testing Program Maturity in your organization
Advancing Testing Program Maturity in your organizationAdvancing Testing Program Maturity in your organization
Advancing Testing Program Maturity in your organization
 
Leadership, analytics & you
Leadership, analytics & youLeadership, analytics & you
Leadership, analytics & you
 
Augment the actionability of Analytics with the “Voice of Customer”
Augment the actionability of Analytics with the “Voice of Customer”Augment the actionability of Analytics with the “Voice of Customer”
Augment the actionability of Analytics with the “Voice of Customer”
 
Predictive Analytics as a Product
Predictive Analytics as a Product Predictive Analytics as a Product
Predictive Analytics as a Product
 
Prepping the Analytics organization for Artificial Intelligence evolution
Prepping the Analytics organization for Artificial Intelligence evolutionPrepping the Analytics organization for Artificial Intelligence evolution
Prepping the Analytics organization for Artificial Intelligence evolution
 
Power of Small Data
Power of Small DataPower of Small Data
Power of Small Data
 
Optimizing Marketing Decisions
Optimizing Marketing DecisionsOptimizing Marketing Decisions
Optimizing Marketing Decisions
 
Building & nurturing an Analytics Team
Building & nurturing an Analytics TeamBuilding & nurturing an Analytics Team
Building & nurturing an Analytics Team
 
Analytics as an enabler of Company Culture
Analytics as an enabler of Company CultureAnalytics as an enabler of Company Culture
Analytics as an enabler of Company Culture
 
Digital summit Dallas 2015 - Research brings back the 'human' aspect to insights
Digital summit Dallas 2015 - Research brings back the 'human' aspect to insightsDigital summit Dallas 2015 - Research brings back the 'human' aspect to insights
Digital summit Dallas 2015 - Research brings back the 'human' aspect to insights
 
Social media analytics - a delicious treat, but only when handled like a mast...
Social media analytics - a delicious treat, but only when handled like a mast...Social media analytics - a delicious treat, but only when handled like a mast...
Social media analytics - a delicious treat, but only when handled like a mast...
 
Optimizing product decisions
Optimizing product decisionsOptimizing product decisions
Optimizing product decisions
 
Moving beyond numbers
Moving beyond numbersMoving beyond numbers
Moving beyond numbers
 
Taming the Data Lake with Scalable Metrics Model Framework
Taming the Data Lake with Scalable Metrics Model FrameworkTaming the Data Lake with Scalable Metrics Model Framework
Taming the Data Lake with Scalable Metrics Model Framework
 
Actionability of insights
Actionability of insights Actionability of insights
Actionability of insights
 
A/B Testing Best Practices - Do's and Don'ts
A/B Testing Best Practices - Do's and Don'tsA/B Testing Best Practices - Do's and Don'ts
A/B Testing Best Practices - Do's and Don'ts
 
Transform your Analytics Practice into Insights Practice
Transform your Analytics Practice into Insights PracticeTransform your Analytics Practice into Insights Practice
Transform your Analytics Practice into Insights Practice
 

Recently uploaded

standardisation of garbhpala offhgfffghh
standardisation of garbhpala offhgfffghhstandardisation of garbhpala offhgfffghh
standardisation of garbhpala offhgfffghh
ArpitMalhotra16
 
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
ewymefz
 
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
John Andrews
 
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
ukgaet
 
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
v3tuleee
 
Opendatabay - Open Data Marketplace.pptx
Opendatabay - Open Data Marketplace.pptxOpendatabay - Open Data Marketplace.pptx
Opendatabay - Open Data Marketplace.pptx
Opendatabay
 
FP Growth Algorithm and its Applications
FP Growth Algorithm and its ApplicationsFP Growth Algorithm and its Applications
FP Growth Algorithm and its Applications
MaleehaSheikh2
 
Q1’2024 Update: MYCI’s Leap Year Rebound
Q1’2024 Update: MYCI’s Leap Year ReboundQ1’2024 Update: MYCI’s Leap Year Rebound
Q1’2024 Update: MYCI’s Leap Year Rebound
Oppotus
 
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Subhajit Sahu
 
Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)
TravisMalana
 
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
slg6lamcq
 
Machine learning and optimization techniques for electrical drives.pptx
Machine learning and optimization techniques for electrical drives.pptxMachine learning and optimization techniques for electrical drives.pptx
Machine learning and optimization techniques for electrical drives.pptx
balafet
 
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
u86oixdj
 
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
Tiktokethiodaily
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP
 
一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单
enxupq
 
Adjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTESAdjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTES
Subhajit Sahu
 
SOCRadar Germany 2024 Threat Landscape Report
SOCRadar Germany 2024 Threat Landscape ReportSOCRadar Germany 2024 Threat Landscape Report
SOCRadar Germany 2024 Threat Landscape Report
SOCRadar
 
【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】
【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】
【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】
NABLAS株式会社
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
vcaxypu
 

Recently uploaded (20)

standardisation of garbhpala offhgfffghh
standardisation of garbhpala offhgfffghhstandardisation of garbhpala offhgfffghh
standardisation of garbhpala offhgfffghh
 
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
 
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
Chatty Kathy - UNC Bootcamp Final Project Presentation - Final Version - 5.23...
 
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
 
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
 
Opendatabay - Open Data Marketplace.pptx
Opendatabay - Open Data Marketplace.pptxOpendatabay - Open Data Marketplace.pptx
Opendatabay - Open Data Marketplace.pptx
 
FP Growth Algorithm and its Applications
FP Growth Algorithm and its ApplicationsFP Growth Algorithm and its Applications
FP Growth Algorithm and its Applications
 
Q1’2024 Update: MYCI’s Leap Year Rebound
Q1’2024 Update: MYCI’s Leap Year ReboundQ1’2024 Update: MYCI’s Leap Year Rebound
Q1’2024 Update: MYCI’s Leap Year Rebound
 
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
Levelwise PageRank with Loop-Based Dead End Handling Strategy : SHORT REPORT ...
 
Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)
 
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
 
Machine learning and optimization techniques for electrical drives.pptx
Machine learning and optimization techniques for electrical drives.pptxMachine learning and optimization techniques for electrical drives.pptx
Machine learning and optimization techniques for electrical drives.pptx
 
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
 
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
 
一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单
 
Adjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTESAdjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTES
 
SOCRadar Germany 2024 Threat Landscape Report
SOCRadar Germany 2024 Threat Landscape ReportSOCRadar Germany 2024 Threat Landscape Report
SOCRadar Germany 2024 Threat Landscape Report
 
【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】
【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】
【社内勉強会資料_Octo: An Open-Source Generalist Robot Policy】
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
 

A high level overview of all that is Analytics

  • 2. What is Predictive Analytics? Various way of doing it Forecasting Techniques Decision Trees Regression How to find out if a method works? How to deploy them in real world? When to do Predictive Analytics vs. not? REFERENCES Intended for Knowledge Sharing only. 2 Intended for Knowledge Sharing only. 2 CONTENTS
  • 3. Intended for Knowledge Sharing only. 3 Intended for Knowledge Sharing only. 3 What is Predictive Analytics? Prediction of future value of variable of interest(predicted) from past values of either itself or other explanatory variables(predictor)… eg. Stock price movements, credit card default rates, inventory management, etc. Concepts of Time Windows.. Other time components.. • Trend – long term organic growth • Seasonality – specific fluctuations repeating for certain time points(months, days) every year • Development window (Jan’08 – Jun’10) • Observe the predicted variable (stock price, default rate, etc.) and /or get the relationship with predictor variables • Validation window (Jul’10 – Dec’10) • Check if prediction accuracy within acceptable limits • If not, improve the prediction framework • Prediction window (Jan’11 – May’11) • Use the predictive method to get the projections • Strategize business actions based on projections 0.00 0.02 0.04 0.06 0.08 0.10 0.12 Rev($Bn) Development Window Validation Window Prediction Window
  • 4. Intended for Knowledge Sharing only. 4 Intended for Knowledge Sharing only. 4 Various ways of doing it All methods can be grouped in three broad categories.. • Simple Forecasting Techniques • Decision Trees • Regression Simple Forecasting Techniques: • Moving Averages – Moving Averages over last ‘x’ months • Decomposition Method – Tease out Trend and Seasonality components for use in predictions • Holt Exponential Smoothing Techniques –Apply Trend and Seasonality to Exponential Averages. Exponential Averages assign progressively lesser weights to older observations. Decision Trees: • Breaks down population into smaller buckets and predicts for each buckets. Yield much higher prediction accuracy than simple forecasting techniques. Regression: • Establishes a mathematical relationship between ‘predicted’ and ‘predictor’, which can then be used to predict future values from known values of ‘predictor’.
  • 5. Intended for Knowledge Sharing only. 5 Intended for Knowledge Sharing only. 5 Simple Forecasting Techniques Simplest method of forecasting but cannot explain why it predicts certain value... Moving Averages: Prediction(t) = Average(Value at t-1 to t-x) For next month, shift average window by 1 month and so on. Decomposition Method: Prediction(t) = Trended value(T)*Seasonality Index(SI) -> T= Actual value in last available month*Growth factor; and Growth factor = (Actual(t) – Actual(t-1))/Actual(t-1) -> SI = average of all Jan/average of all months; SI has to be calculated separately for each of 12 months and then SI relevant for “being predicted” month applied Holt Exponential Smoothing: Prediction(t) = (Smoothed series+ Trend(T))*SI ->Smoothed series = Smoothing Factor * Actual last month + (1-Smoothing Factor) * Smoothed for last month and so on 350 400 450 500 550 600 650 700 #International airline passengers('000) Actuals Moving Averages(12 months) Decomposition Method Holt-Winters
  • 6. • Begins with entire population and splits on ‘predicted’ variable(e.g., default rate) by a predictor variable, e.g. Customer type – Subprime or Premium • Checks if the difference in ‘predicted’(default rate) is statistically significant using Chi-square or t-test • If the difference is significant, then it splits the nodes* by other variables, • If not, it goes back and tries to ‘significantly’ split the population by another variable How long does it keep splitting? • Until it finds significant splits based on the Chi-square or t-tests • Until it hits max number of nodes* (manageable number for business actions) • When the counts in lower most nodes becomes less than 5% *Each subgroup resulting from split is called a node Intended for Knowledge Sharing only. 6 Intended for Knowledge Sharing only. 6 Decision Trees Higher prediction accuracy and explain ability, since prediction is done at member sub- groups level… All Credit Card holders Default rate: 2% Sub-prime Default rate: 5% Premium Default rate: 1% FICO <250 Default rate: 8% FICO: 250 to 400 Default rate: 6% FICO>400 Default rate: 4% Monthly spend <$500 Default rate: 0.5% Monthly spend >$500 Default rate: 1.5% nodes
  • 7. • Estimates degree of relationship between the “predicted” variable and the “predictor” variables e.g. Credit Card default = intercept + b1*bankruptcy +b2*payment to income ratio ->intercept – unexplained factor ->b1,b2– strength of relationship- how much “predicted”((default probability) changes with unit changes in “predictor” values(bankruptcy or payment to income ratio) What are the various types of regression? Intended for Knowledge Sharing only. 7 Intended for Knowledge Sharing only. 7 Regression Highest prediction accuracy and explain ability, since prediction is done at individual member level… Regression Methods Linear Logistic ARIMA When they should be used? To predict value of a variable, e.g., Credit Card spend, inventory quantity To predict probability of certain event happening, e.g., credit card default, inventory shortage To predict future values from historical figures, e.g., future stock price from past figures Inherent assumptions in the technique Predicted variable follows "normal distribution" meaning population has most members having about average values and lesser counts towards extremes Probability of event happening follows "binomial distribution" meaning probability of observing 'x' defaulters by picking 'N' members is highest if the proportion of defaulters in population is (x/N) ‘Stationary time series’, i.e., the structure of time series doesn’t change significantly, i.e., increase in volatility or change in growth rate itself
  • 8. Intended for Knowledge Sharing only. 8 Intended for Knowledge Sharing only. 8 How to find if a method works? Various measurement diagnostics can be used to check prediction accuracy… • Root Mean Square Error (RMSE): Average difference between actual and predicted values. RMSE = average of square(actual – predicted) • Error rate(%): Tells what is the error relative to actual values of predicted variable. Error rate (%) = RMSE/average of actuals Decision Trees and Regression models have more sophisticated diagnostics… • R-square: Tells how much of the variance in “predicted” variable is captured by the model. • Rank Order: Checks if the predicted values correlate with actual values. Steps: • Sort the population by predicted values • Split into groups with equal number of obs, generally ten groups or deciles • Get the average of both actual and predicted values for each group • Check if both averages are gradually decreasing from the top group to bottom • Gains Chart: Useful mostly in logistic regression models. Tells if most of the defaulters are being captured in top groups itself. If not, models aren’t giving highest probability to actual defaulters and so models needs to be revisited. • Akaike Information Criteria(AIC): Helps in selecting the most “parsimonious” regression models- maximum information capture with least number of predictors.
  • 9. Intended for Knowledge Sharing only. 9 Intended for Knowledge Sharing only. 9 How to deploy them in real world? Simple Forecasting Techniques are used to predict at portfolio level only, e.g., predictions for Auto-Lease portfolio’s loss rates but both Decision Trees and Regression Models require separate infrastructure to get deployed for real time/non-real time predictions… Decision Trees is used as a “rule engine”. Every customer will fall into one of the nodes and the prediction for that node is used to act on this customer’s request, e.g., Sub-prime customer with FICO<250 will be targeted even when he is just 1 payment due, vs. a premium customer in high customer will be given leverage to 4 payments due. Regression Model gives “account level” estimates which are then used to act on customer’s request, e.g., Fraud models, etc. Models have to run every time a customer transacts.
  • 10. OPPORTUNITY SIZING MONTH 1 MONTH 2 MONTH 3 FT 1 FT2 Is ROI acceptable? MIN COUNT REQUIREMENTS MMF NO MMF Is minimum count available? REQUIRED ACCURACY OF PREDICTION Prediction accuracy unsatisfactory? CONSTRAINTS EXPLANATION QUESTIONS Intended for Knowledge Sharing only. 10 When to do Predictive Analytics vs. not?
  • 11. Intended for Knowledge Sharing only. 11 REFERENCES Simple Forecasting Techniques http://itl.nist.gov/div898/handbook/pmc/section4/pmc4.htm Binomial Distributions http://www.itl.nist.gov/div898/handbook/eda/section3/eda366i.htm Exponential Smoothing http://forecasters.org/pdfs/foresight/free/Issue19_goodwin.pdf Decision Trees http://www.salford-systems.com/resources/whitepapers/index.html Linear Regression http://faculty.chass.ncsu.edu/garson/PA765/regress.htm Logistic Regression http://faculty.chass.ncsu.edu/garson/PA765/logistic.htm ARIMA Regression(also called as Box-Jenkins methodology) http://www.itl.nist.gov/div898/handbook/pmc/section4/pmc445.htm