Forecasting, Prediction Models, and Times Series Analysis with Oracle Business Intelligence and Analytics. Rittman Mead BI Forum 2013
|
|
|
- Roxanne Julia Eaton
- 10 years ago
- Views:
Transcription
1 Forecasting, Prediction Models, and Times Series Analysis with Oracle Business Intelligence and Analytics Rittman Mead BI Forum 2013 Dan Vlamis and Tim Vlamis Vlamis Software Solutions
2 Presentation Agenda Understanding classification and forecasting (predictions) Use of Geneva Forecasting engine in Oracle OLAP Holt-Winters and time series Parameter choices ARIMA forecasting algorithm in R Use Oracle R Enterprise Use of time dimension and time series functions in OBI
3 Dan Vlamis and Vlamis Software Solutions Founded in 1992 by Dan Vlamis in Kansas City, MO Developed/implemented more than 200 Oracle BI systems Specializes in ORACLE-based: Business Intelligence Analytic Options to Oracle DB (OLAP, Data Mining, Spatial) Data Warehousing Training and mentoring Expert presenter at major Oracle conferences (blog, papers, newsletters, services) Co-authored book Oracle Essbase & Oracle OLAP Beta tester for OBIEE 11g Reseller for Simba and Nokia map data for OBIEE HOL Coordinator for BIWA Summit 2013
4 Tim Vlamis Bio 20+ years experience in business modeling and valuation, forecasting, and scenario analyses Trainer for Oracle University Two-Day Data Mining Course Professional Certified Marketer (PCM) from AMA Active Member of NICO (Northwestern Institute on Complex Systems) Adjunct Professor of Business Benedictine College MBA Kellogg School of Management (Northwestern) BA Economics Yale University
5 Forecasting Today Predictions are the holy grail of BI systems and initiatives. Most all corporations have need for forecasting. Typical forecasting systems Are stand alone or from ERP (not integrated to BI system) Tend to use straight line or heuristic calculations. Not always integrated into the business. Are often tied directly to the budgeting process High level of angst surrounding forecasts.
6 Forecasting Should Should be integrated with rest of BI system. Should be another series of measures that are revealed in the context of historic information. Should be a part of the Common Enterprise Model. Should have visibility across functional areas and roles in corporations Should leverage most powerful calculation tools (database and BI system) Ideally adjusted based on an integrated view across corporate functions (marketing, operations, finance, etc.)
7 Forecasting Methodologies Rule-based heuristic (last period, last period +5%, etc.) Cross-sectional methodologies (point in time) Time series (time sequenced data series) Mixed models Averages (moving, weighted, etc.) Linear and Non-linear regressions (line fitting) Transforms, projections, min/max
8 Methodologies for Today OLAP Geneva Forecasting Engine Holt Winters for time series Oracle R Enterprise ARIMA ODM Classification and Regression (overview) OBIEE Time Series Functions (overview)
9 OLAP Geneva Forecasting Engine FCOPEN function -- Creates a forecasting context. FCSET command -- Specifies the forecast characteristics. FCEXEC command -- Executes a forecast and populates Oracle OLAP variables with forecasting data. FCQUERY function -- Retrieves information about the characteristics of a forecast or a trial of a forecast. FCCLOSE command -- Closes a forecasting context.
10 METHOD method AUTOMATIC best fit for the data. (Default) LINREG linear regression (y=a*x+b) is fitted to the data. NLREG1 nonlinear regression x'=log(x) and y'=log(y) a polynomial model between x and y(y=c*x^a). NLREG2 nonlinear regression x'=x and y'=ln(y) an exponential model between x and y(y=c*e^ax). NLREG3 nonlinear regression x'=log(x) and y'=y a logarithmic model between x and y(y=a*log(x)+b). NLREG4 nonlinear regression method ix'=1/x and y'=1/y an asymptotic curve (y=x/(a+bx)). NLREG5 nonlinear regression method x'=x and y'=ln(y/(k-y)) an exponential asymptotic curve (y=cke^ax/(1+ce^ax)). SESMOOTH single exponential smoothing method intended for short term forecasts of non-seasonal data. DESMOOTH double exponential smoothing method exponential smoothing is applied to both the series and the trend term. CROSTON Croston's Intermittent Demand method. used for intermittent data where more than half of the observations are zero HOLT/WINTERS triple exponential smoothing. used on seasonal data
11 Using Holt-Winters Triple Exponential Smoothing methodology Used for data suspected to be seasonal Needs multiple seasons Assumes regular periods Pre/post processing may be necessary (fiscal calendar 445, irregular holidays, Black Swans, outages, etc.)
12 Exponential Smoothing Methodology for smoothing data and preferencing more recent periods when doing time series forecasts. Similar conceptually to a weighted moving average Weights decline according to an exponential function. {1, (1-α), (1-α)², (1-α)³, } Higher values give more weight to more recent periods Single (weighted average of most recent observation and the most recent smoothed statistic) Double (trend either up or down) Triple (period effect)
13 FCSET Parameters ALLOCLAST {YES NO} ALPHA {MAX MIN STEP} decimal APPROACH {'APPAUTO' 'APPMA NUAL' BETA {MAX MIN STEP} decimal COMPSMOOTH {YES NO} CYCDECAY {MAX MIN} decimal GAMMA {MAX MIN STEP} decimal HISTPERIODS integer MAXFACTOR decimal METHOD 'method' MINFCFACTOR decimal MPTDECAY {MAX MIN} decimal NTRIALS integer PERIODICITY cycle-spec RATIO decimal SMOOTHING {YES NO} TRANSFORM {'TRNOSEA' 'TRSEA ' 'TRMPT'} TRENDHOLD {MAX MIN STEP} de cimal WINDOWLEN integer
14 Alpha, Beta, Gamma Setting Default Max is 0.3 Default Min is 0.1 Default Step is 0.1 (.05<= divisible value<=0.2) Greater value means nearer periods have more weight. Lower value means periods have more equal weight.
15 Recommendations Be careful of accepting the APPAUTO setting Be aware of Embedded total time dimensions Match HISTPERIODS with PERIODICITY for best results PERIODICITY cycle-spec is hierarchical from higher grain to lower Ex {52,7} 52 weeks in a year, 7 days in a week Ex {4,13,7} 4 quarters in a year, 13 weeks in a quarter, 7 days in a week Ex {12} 12 months in a year Months are challenging to incorporate with other periods
16 Case Study Using Oracle OLAP Forecasted values from Oracle OLAP made no sense Client trying to use Best Fit complicates study because don t know what method chosen Avoid tendency to inherit mistakes Problem in HISTPERIODS parameter Solution: set HISTPERIODS to number of data points Problem in forecasting on hierarchical dimension 12 month periods, 1 year period throwing off forecast Solution: LIMIT TIME TO TIMELEVEL PERIOD periods artificially inflate every 3 rd period Added 3 rd year average of 2 years
17 Example OLAP DML Forecast Program vrb _handle int Removed error handling and definition of temporary variables such as DJOFCST2_C_SEASONAL LIMIT DJOFCST2_C_MEASURE_DIM TO 'QTY_HW' _handle = FCOPEN('MyForecast') limit djotime_d2 to djotime_d2_levelrel eq 'PERIOD' SORT DJOTIME_D2 a DJOTIME_D2_END_DATE "Set forecast parameters for 'best fit' fcset _handle method 'HOLT/WINTERS' APPROACH 'APPMANUAL' SMOOTHING 'YES' MAXFCFACTOR 10.0 TRANSFORM 'TRSEA' - periodicity 12 histperiods 36 BETA MAX 0.5 "Execute the forecast - save seasonal and seasonal smoothed into the variables just defined FCEXEC _handle time DJOTIME_D2 INTO DJOFCST2_C_STORED - seasonal DJOFCST2_C_SEASONAL - smseasonal DJOFCST2_C_SMSEASONAL backcast DJOFCST2_C_QTY ALLSTAT "Close the forecast FCCLOSE _handle update commit return
18 Forecasts Did Not Make Sense
19 Forecasts Did Not Make Sense
20 Holt-Winters Forecast After Fix
21 Holt-Winters Vs. 3-Mo Moving Avg
22 Includes single, double, and triple exponential smoothing techniques. Includes linear and non-linear regression option. Does not include an auto-choice function. Non-linear regression transforms must be manually applied. Many other transform, calculation, and modeling capabilities in Essbase.
23 ARIMA Autoregressive Integrated Moving Average Powerful algorithm for series analysis and prediction Three parameters p, d, q Auto regression (how reliant series values are on previous series values). AR(0) is white noise. Integrated (degree of AR differencing, Random Walk) Moving average (smoothing function) ARIMA (1,0,0) = AR(1) ARIMA (1,0,1) = ARMA (1,1) Large number of potential models ( Know the name Rob Hyndman for ARIMA in R
24 Stationarity Processes with no growth related to time. Random walks are stationary. Necessary to difference non-stationary series before applying ARMA models. (ARIMA handles this through the Integrated term d of the p, d, q model parameters.)
25 Non-Seasonal ARIMA (p, d, q) φ B 1 B d γ t = c + θ B ε t ε t is a white noise process with 0 mean and variance σ 2. B is a backshift operator φ z is a polynomial of order p θ z is a polynomial of order q
26 Seasonal ARIMA p, d, q P, D, Q m Φ B m φ B 1 B D 1 B d γ t = c + Θ B m θ B ε t ε t is a white noise process with 0 mean and variance σ 2. B is a backshift operator Φ z is a polynomial of order p Θ z is a polynomial of order q
27 Forecast() package in R Includes methods: ets() auto.arima() Arima() arima() HoltWinters() StructTS() Produces the original series; ˆpoint forecasts; prediction intervals of specified coverage; the forecasting method used and information about the fitted model; ˆresiduals from the fitted model; ône-step forecasts from the fitted model for the period of the observed data.
28 Choosing an ARIMA model Auto.arima can be used for model choice. Manual model choice requires hypothesis testing and evaluation of results. Use minimum AIC to chose best model AIC = 2log L + 2 p + q + P + Q + k Compare AIC values to each other, absolute values carry no meaning
29 arima Demo
30 ARIMA vs. Holt-Winters Holt-Winters can be used for series that are seasonal and have a trend. (require order 2 differencing in ARIMA) Model selection can be complex in ARIMA and auto.arima selection may not be well understood. ARIMA best for stationary data series. ARIMA very powerful, but more to learn. Initial values more important in ARIMA (can have a big effect on predictions depending on model selected.) ARIMA provides confidence intervals
31 Time Series Functions in OBI 11g Very powerful, accessible capability Time dimension must be designated Query results must be exact to pull from cache Can be expensive in processing Make sure that unique keys are defined at each level ( Jan13 rather than Jan )
32 AGO function Defines a time-based offset Can nest multiple AGO statements (same level) Ago(<<Measure>>, <<Level>>, <<Number of Periods>>) Measure is a fact such as sales. Level is an optional term, default is set by the grain of the query (BY clause) or is specified in repository for level based measures. Number of periods is an integer specifying the offset value.
33 TODATE Time-based aggregation function. Calculates based on starting value to current. Can nest with AGO (same level) ToDate(<<Measure>>, <<Level>>) Measure is a fact such as sales Level is the time grain such as year or month
34 PERIODROLLING Defines a period of time contextually Performs an operation across a specified set of query grain periods PeriodRolling(<<Measure>>, <<Starting Period Offset>>, <<Ending Period Offset>>, <<[Hierarchy]>>) Measure is a fact such as sales Starting Period Offset is an integer value, use a minus sign ( -2 means 2 periods ago) Ending Period Offset defines the end of the period, use a zero for current period Hierarchy is an optional setting to specify which time hierarchy to use such as fiscal Use unbound for starting period offset to calculate total from beginning PeriodRolling uses either the query level grain of measure or the measure level for measure if it has been set in the Admin tool.
35 Oracle BI Trend Demo
36 Oracle Data Mining Oracle Data Mining is an option for the Enterprise Edition of the Oracle Database. A collection of APIs and specialized SQL functions. Includes a large number of specialized algorithms and built-in procedures. Makes use of many built-in capabilities of the Oracle Database ODM typically refers to Oracle Data Mining Copyright 2012, Vlamis Software Solutions, Inc.
37 Copyright 2011, Vlamis Software Solutions, Inc. Oracle Data Mining Algorithms Problem Algorithm Applicability Classification Regression Anomaly Detection Attribute Importance Association Rules Clustering Feature Extraction A1 A2 A3 A4 A5 A6 A7 F1 F2 F3 F4 Logistic Regression (GLM) Decision Trees Naïve Bayes Support Vector Machine Multiple Regression (GLM) Support Vector Machine One Class SVM Minimum Description Length (MDL) Apriori Hierarchical K-Means Hierarchical O-Cluster NMF Classical statistical technique Popular / Rules / transparency Embedded app Wide / narrow data / text Classical statistical technique Wide / narrow data / text Fraud Detection Attribute reduction Identify useful data Reduce data noise Market basket analysis Link analysis Product grouping Text mining Gene and protein analysis Text analysis Feature reduction
38 Copyright 2012, Vlamis Software Solutions, Inc. Classification Prediction model for non-continuous information Binary such as yes/no Limited set (low/medium/high) Involves supervised learning Prediction directed by a previously known dependent variable or target variable. Commonly includes three phases: Training Testing Scoring Results in predictive models that are applied to new data sets. In our example, we predict which prospects are likely to buy insurance.
39 Oracle Data Mining Demo
40 Oracle Test Drive Free to try out Oracle BI Go to Runs off of Amazon AWS Hands-on Labs based on Collaborate 2012 HOLs Test Drives for: Oracle BI BI Publisher Microsoft Excel against Oracle OLAP Oracle Data Mining Map Views in OBIEE Once sign up, you have private instance for 5 hours Available now
41 Thank You!
The Oracle Data Mining Machine Bundle: Zero to Predictive Analytics in Two Weeks Collaborate 15 IOUG
The Oracle Data Mining Machine Bundle: Zero to Predictive Analytics in Two Weeks Collaborate 15 IOUG Presentation #730 Tim Vlamis and Dan Vlamis Vlamis Software Solutions 816-781-2880 www.vlamis.com Presentation
Data Visualization for Mobile Devices with OBI 11g. Collaborate 14
Data Visualization for Mobile Devices with OBI 11g Collaborate 14 Session 711 Chris Claterbos & Tim Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Copyright 2014, Vlamis Software Solutions,
Starting Smart with Oracle Advanced Analytics
Starting Smart with Oracle Advanced Analytics Great Lakes Oracle Conference Tim Vlamis Thursday, May 19, 2016 Vlamis Software Solutions Vlamis Software founded in 1992 in Kansas City, Missouri Developed
Advanced Dashboard Design in OBI 11g. Collaborate 2013 Session 726
Advanced Dashboard Design in OBI 11g Collaborate 2013 Session 726 Tim Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Vlamis Software Solutions Vlamis Software founded in 1992 in Kansas
Anomaly and Fraud Detection with Oracle Data Mining 11g Release 2
Oracle 11g DB Data Warehousing ETL OLAP Statistics Anomaly and Fraud Detection with Oracle Data Mining 11g Release 2 Data Mining Charlie Berger Sr. Director Product Management, Data
Blazing BI: the Analytic Options to the Oracle Database. ODTUG Kscope 2013
Blazing BI: the Analytic Options to the Oracle Database ODTUG Kscope 2013 Dan Vlamis Tim Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Copyright 2013, Vlamis Software Solutions, Inc.
Budgeting and Planning with Microsoft Excel and Oracle OLAP
Copyright 2009, Vlamis Software Solutions, Inc. Budgeting and Planning with Microsoft Excel and Oracle OLAP Dan Vlamis and Cathye Pendley [email protected] [email protected] Vlamis Software Solutions,
Data Visualization for Oracle Business Intelligence 11g. Oracle OpenWorld 2014
Data Visualization for Oracle Business Intelligence 11g Oracle OpenWorld 2014 Tim Vlamis Dan Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Session #UGF9227 Copyright 2014, Vlamis
Data Analysis with Various Oracle Business Intelligence and Analytic Tools
Data Analysis with Various Oracle Business Intelligence and Analytic Tools Session ID: 108680 Prepared by: Tim and Dan Vlamis Vlamis Software Solutions www.vlamis.com @TimVlamis Agenda What we will talk
Using Map Views and Spatial Analytics in OBI 11g. BIWA Summit 2014
Using Map Views and Spatial Analytics in OBI 11g BIWA Summit 2014 Tim Vlamis Dan Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Vlamis Software Solutions Vlamis Software founded in
The Data Mining Process
Sequence for Determining Necessary Data. Wrong: Catalog everything you have, and decide what data is important. Right: Work backward from the solution, define the problem explicitly, and map out the data
Oracle Advanced Analytics Oracle R Enterprise & Oracle Data Mining
Oracle Advanced Analytics Oracle R Enterprise & Oracle Data Mining R The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated
Building Cubes and Analyzing Data using Oracle OLAP 11g
Building Cubes and Analyzing Data using Oracle OLAP 11g Collaborate '08 Session 219 Chris Claterbos [email protected] Vlamis Software Solutions, Inc. 816-729-1034 http://www.vlamis.com Copyright 2007,
OBI 11g Data Visualization Best Practices
OBI 11g Data Visualization Best Practices Oracle OpenWorld 2012 Tim Vlamis Brian Terry Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Vlamis Software Solutions Founded in 1992 by Dan Vlamis
Data Visualization for Oracle Business Intelligence 11g. BIWA Summit 2015
Data Visualization for Oracle Business Intelligence 11g BIWA Summit 2015 Tim Vlamis Dan Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com BIWA SIG Started in summer of 2006 BIWA Summits
OBI 11g Data Visualization Best Practices
OBI 11g Data Visualization Best Practices Tim Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Dan Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Copyright 2012,
Oracle BI 11.1.1.6 New Features Dan Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com
Oracle BI 11.1.1.6 New Features Dan Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Oracle BI 11.1.1.6 New Features Agenda IOUG, BIWA and Vlamis background Agenda for reviewing features:
Analysis of algorithms of time series analysis for forecasting sales
SAINT-PETERSBURG STATE UNIVERSITY Mathematics & Mechanics Faculty Chair of Analytical Information Systems Garipov Emil Analysis of algorithms of time series analysis for forecasting sales Course Work Scientific
Exadata V2 + Oracle Data Mining 11g Release 2 Importing 3 rd Party (SAS) dm models
Exadata V2 + Oracle Data Mining 11g Release 2 Importing 3 rd Party (SAS) dm models Charlie Berger Sr. Director Product Management, Data Mining Technologies Oracle Corporation [email protected]
Oracle Advanced Analytics 12c & SQLDEV/Oracle Data Miner 4.0 New Features
Oracle Advanced Analytics 12c & SQLDEV/Oracle Data Miner 4.0 New Features Charlie Berger, MS Eng, MBA Sr. Director Product Management, Data Mining and Advanced Analytics [email protected] www.twitter.com/charliedatamine
Data Mining + Business Intelligence. Integration, Design and Implementation
Data Mining + Business Intelligence Integration, Design and Implementation ABOUT ME Vijay Kotu Data, Business, Technology, Statistics BUSINESS INTELLIGENCE - Result Making data accessible Wider distribution
COMP6053 lecture: Time series analysis, autocorrelation. [email protected]
COMP6053 lecture: Time series analysis, autocorrelation [email protected] Time series analysis The basic idea of time series analysis is simple: given an observed sequence, how can we build a model that
Predictive Analytics Powered by SAP HANA. Cary Bourgeois Principal Solution Advisor Platform and Analytics
Predictive Analytics Powered by SAP HANA Cary Bourgeois Principal Solution Advisor Platform and Analytics Agenda Introduction to Predictive Analytics Key capabilities of SAP HANA for in-memory predictive
What Are They Thinking? With Oracle Application Express and Oracle Data Miner
What Are They Thinking? With Oracle Application Express and Oracle Data Miner Roel Hartman Brendan Tierney Agenda Who are we The Scenario Graphs & Charts in APEX - Live Demo Oracle Data Miner & DBA tasks
Energy Load Mining Using Univariate Time Series Analysis
Energy Load Mining Using Univariate Time Series Analysis By: Taghreed Alghamdi & Ali Almadan 03/02/2015 Caruth Hall 0184 Energy Forecasting Energy Saving Energy consumption Introduction: Energy consumption.
Anomaly and Fraud Detection with Oracle Data Mining
Oracle 11g DB Data Warehousing ETL OLAP Statistics Anomaly and Fraud Detection with Oracle Data Mining Data Mining Charlie Berger Sr. Director Product Management, Data Mining Technologies
Prerequisites. Course Outline
MS-55040: Data Mining, Predictive Analytics with Microsoft Analysis Services and Excel PowerPivot Description This three-day instructor-led course will introduce the students to the concepts of data mining,
Oracle Data Mining Hands On Lab
Oracle Data Mining Hands On Lab Material provided by Oracle Corporation Vlamis Software Solutions is one of the most respected training organizations in the Oracle Business Intelligence community because
WebFOCUS RStat. RStat. Predict the Future and Make Effective Decisions Today. WebFOCUS RStat
Information Builders enables agile information solutions with business intelligence (BI) and integration technologies. WebFOCUS the most widely utilized business intelligence platform connects to any enterprise
A Datawarehousing/BI Session ANTHONY D NORIEGA [email protected] ADN R & D
Perspectives in Oracle Forecasting Analytics A Datawarehousing/BI Session ANTHONY D NORIEGA [email protected] ADN R & D 1 Speaker Qualifications Oracle Consultant, ADN R & D Speaker at Oracle OpenWorld,
Oracle OLAP What's All This About?
Oracle OLAP What's All This About? IOUG Live! 2006 Dan Vlamis [email protected] Vlamis Software Solutions, Inc. 816-781-2880 http://www.vlamis.com Vlamis Software Solutions, Inc. Founded in 1992 in Kansas
OLAP Is Different From What You Think. Rittman Mead BI Forum Spring 2012
OLAP Is Different From What You Think Rittman Mead BI Forum Spring 2012 Dan Vlamis Vlamis Software Solutions 816-781-2880 http://www.vlamis.com Dan Vlamis and Vlamis Software Solutions Vlamis Software
Lavastorm Analytic Library Predictive and Statistical Analytics Node Pack FAQs
1.1 Introduction Lavastorm Analytic Library Predictive and Statistical Analytics Node Pack FAQs For brevity, the Lavastorm Analytics Library (LAL) Predictive and Statistical Analytics Node Pack will be
Predictive Modeling Techniques in Insurance
Predictive Modeling Techniques in Insurance Tuesday May 5, 2015 JF. Breton Application Engineer 2014 The MathWorks, Inc. 1 Opening Presenter: JF. Breton: 13 years of experience in predictive analytics
Data Mining - The Next Mining Boom?
Howard Ong Principal Consultant Aurora Consulting Pty Ltd Abstract This paper introduces Data Mining to its audience by explaining Data Mining in the context of Corporate and Business Intelligence Reporting.
TIME SERIES ANALYSIS
TIME SERIES ANALYSIS L.M. BHAR AND V.K.SHARMA Indian Agricultural Statistics Research Institute Library Avenue, New Delhi-0 02 [email protected]. Introduction Time series (TS) data refers to observations
TIME SERIES ANALYSIS
TIME SERIES ANALYSIS Ramasubramanian V. I.A.S.R.I., Library Avenue, New Delhi- 110 012 [email protected] 1. Introduction A Time Series (TS) is a sequence of observations ordered in time. Mostly these
Time Series Analysis: Basic Forecasting.
Time Series Analysis: Basic Forecasting. As published in Benchmarks RSS Matters, April 2015 http://web3.unt.edu/benchmarks/issues/2015/04/rss-matters Jon Starkweather, PhD 1 Jon Starkweather, PhD [email protected]
MGT 267 PROJECT. Forecasting the United States Retail Sales of the Pharmacies and Drug Stores. Done by: Shunwei Wang & Mohammad Zainal
MGT 267 PROJECT Forecasting the United States Retail Sales of the Pharmacies and Drug Stores Done by: Shunwei Wang & Mohammad Zainal Dec. 2002 The retail sale (Million) ABSTRACT The present study aims
ORACLE OLAP. Oracle OLAP is embedded in the Oracle Database kernel and runs in the same database process
ORACLE OLAP KEY FEATURES AND BENEFITS FAST ANSWERS TO TOUGH QUESTIONS EASILY KEY FEATURES & BENEFITS World class analytic engine Superior query performance Simple SQL access to advanced analytics Enhanced
extreme Datamining mit Oracle R Enterprise
extreme Datamining mit Oracle R Enterprise Oliver Bracht Managing Director eoda Matthias Fuchs Senior Consultant ISE Information Systems Engineering GmbH extreme Datamining with Oracle R Enterprise About
Oracle Data Mining. Concepts 11g Release 2 (11.2) E16808-07
Oracle Data Mining Concepts 11g Release 2 (11.2) E16808-07 June 2013 Oracle Data Mining Concepts, 11g Release 2 (11.2) E16808-07 Copyright 2005, 2013, Oracle and/or its affiliates. All rights reserved.
Azure Machine Learning, SQL Data Mining and R
Azure Machine Learning, SQL Data Mining and R Day-by-day Agenda Prerequisites No formal prerequisites. Basic knowledge of SQL Server Data Tools, Excel and any analytical experience helps. Best of all:
Practical Data Science with Azure Machine Learning, SQL Data Mining, and R
Practical Data Science with Azure Machine Learning, SQL Data Mining, and R Overview This 4-day class is the first of the two data science courses taught by Rafal Lukawiecki. Some of the topics will be
Distance Learning and Examining Systems
Lodz University of Technology Distance Learning and Examining Systems - Theory and Applications edited by Sławomir Wiak Konrad Szumigaj HUMAN CAPITAL - THE BEST INVESTMENT The project is part-financed
1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.
1 Copyright 2011, Oracle and/or its affiliates. FPO In-Database Analytics: Predictive Analytics, Data Mining, Exadata & Business Intelligence Charlie Berger Sr. Director Product Management, Data Mining
Silvermine House Steenberg Office Park, Tokai 7945 Cape Town, South Africa Telephone: +27 21 702 4666 www.spss-sa.com
SPSS-SA Silvermine House Steenberg Office Park, Tokai 7945 Cape Town, South Africa Telephone: +27 21 702 4666 www.spss-sa.com SPSS-SA Training Brochure 2009 TABLE OF CONTENTS 1 SPSS TRAINING COURSES FOCUSING
Auto Days 2011 Predictive Analytics in Auto Finance
Auto Days 2011 Predictive Analytics in Auto Finance Vick Panwar SAS Risk Practice Copyright 2010 SAS Institute Inc. All rights reserved. Agenda Introduction Changing Risk Landscape - Key Drivers and Challenges
An Oracle White Paper September 2010. Predictive Analytics: Bringing The Tools To The Data
An Oracle White Paper September 2010 Predictive Analytics: Bringing The Tools To The Data Introduction... 2 What Are Predictive Analytics -- The Traditional View... 3 A Better Classification... 4 Predicting
An In-Depth Look at In-Memory Predictive Analytics for Developers
September 9 11, 2013 Anaheim, California An In-Depth Look at In-Memory Predictive Analytics for Developers Philip Mugglestone SAP Learning Points Understand the SAP HANA Predictive Analysis library (PAL)
TURKISH ORACLE USER GROUP
TURKISH ORACLE USER GROUP Data Mining in 30 Minutes Husnu Sensoy Global Maksimum Data & Information Tech. Founder VLDB Expert Agenda Who am I? Different problems of Data Mining In database data mining?!?
Oracle Data Mining. Concepts 11g Release 1 (11.1) B28129-04
Oracle Data Mining Concepts 11g Release 1 (11.1) B28129-04 May 2008 Oracle Data Mining Concepts, 11g Release 1 (11.1) B28129-04 Copyright 2005, 2008, Oracle. All rights reserved. The Programs (which include
Oracle Data Mining. Concepts 11g Release 1 (11.1) B28129-02
Oracle Data Mining Concepts 11g Release 1 (11.1) B28129-02 September 2007 Oracle Data Mining Concepts, 11g Release 1 (11.1) B28129-02 Copyright 2005, 2007, Oracle. All rights reserved. The Programs (which
Business Intelligence. Data Mining and Optimization for Decision Making
Brochure More information from http://www.researchandmarkets.com/reports/2325743/ Business Intelligence. Data Mining and Optimization for Decision Making Description: Business intelligence is a broad category
Oracle Data Mining. Concepts 11g Release 2 (11.2) E16808-04
Oracle Data Mining Concepts 11g Release 2 (11.2) E16808-04 August 2010 Oracle Data Mining Concepts, 11g Release 2 (11.2) E16808-04 Copyright 2005, 2010, Oracle and/or its affiliates. All rights reserved.
Data Mining with Oracle Database 11g Release 2
An Oracle White Paper September 2009 Data Mining with Oracle Database 11g Release 2 Competing on In-Database Analytics Executive Overview... 1 In-Database Data Mining... 1 Key Benefits of Oracle Data Mining...
An Introduction to Data Mining
An Introduction to Intel Beijing [email protected] January 17, 2014 Outline 1 DW Overview What is Notable Application of Conference, Software and Applications Major Process in 2 Major Tasks in Detail
Data Warehousing and Data Mining in Business Applications
133 Data Warehousing and Data Mining in Business Applications Eesha Goel CSE Deptt. GZS-PTU Campus, Bathinda. Abstract Information technology is now required in all aspect of our lives that helps in business
2015 Workshops for Professors
SAS Education Grow with us Offered by the SAS Global Academic Program Supporting teaching, learning and research in higher education 2015 Workshops for Professors 1 Workshops for Professors As the market
IBM SPSS Modeler 15 In-Database Mining Guide
IBM SPSS Modeler 15 In-Database Mining Guide Note: Before using this information and the product it supports, read the general information under Notices on p. 217. This edition applies to IBM SPSS Modeler
Hexaware E-book on Predictive Analytics
Hexaware E-book on Predictive Analytics Business Intelligence & Analytics Actionable Intelligence Enabled Published on : Feb 7, 2012 Hexaware E-book on Predictive Analytics What is Data mining? Data mining,
Big Data Analytics and Optimization
Big Data Analytics and Optimization C e r t i f i c a t e P r o g r a m i n E n g i n e e r i n g E x c e l l e n c e e.edu.in http://www.insof LIST OF COURSES Essential Business Skills for a Data Scientist...
Discovering, Not Finding. Practical Data Mining for Practitioners: Level II. Advanced Data Mining for Researchers : Level III
www.cognitro.com/training Predicitve DATA EMPOWERING DECISIONS Data Mining & Predicitve Training (DMPA) is a set of multi-level intensive courses and workshops developed by Cognitro team. it is designed
Getting Started with Oracle Data Miner 11g R2. Brendan Tierney
Getting Started with Oracle Data Miner 11g R2 Brendan Tierney Scene Setting This is not about DB log mining This is an introduction to ODM And how ODM can be included in OBIEE (next presentation) Domain
Oracle OLAP 11g and Oracle Essbase
Oracle OLAP 11g and Oracle Essbase Mark Rittman, Director, Rittman Mead Consulting Who Am I? Oracle BI&W Architecture and Development Specialist Co-Founder of Rittman Mead Consulting Oracle BI&W Project
Oracle Data Mining 11g Release 2
An Oracle White Paper February 2012 Oracle Data Mining 11g Release 2 Competing on In-Database Analytics Disclaimer The following is intended to outline our general product direction. It is intended for
Oracle BI Application: Demonstrating the Functionality & Ease of use. Geoffrey Francis Naailah Gora
Oracle BI Application: Demonstrating the Functionality & Ease of use Geoffrey Francis Naailah Gora Agenda Oracle BI & BI Apps Overview Demo: Procurement & Spend Analytics Creating a ad-hoc report Copyright
Chapter 20: Data Analysis
Chapter 20: Data Analysis Database System Concepts, 6 th Ed. See www.db-book.com for conditions on re-use Chapter 20: Data Analysis Decision Support Systems Data Warehousing Data Mining Classification
Statistics Graduate Courses
Statistics Graduate Courses STAT 7002--Topics in Statistics-Biological/Physical/Mathematics (cr.arr.).organized study of selected topics. Subjects and earnable credit may vary from semester to semester.
Master of Science in Health Information Technology Degree Curriculum
Master of Science in Health Information Technology Degree Curriculum Core courses: 8 courses Total Credit from Core Courses = 24 Core Courses Course Name HRS Pre-Req Choose MIS 525 or CIS 564: 1 MIS 525
Module 6: Introduction to Time Series Forecasting
Using Statistical Data to Make Decisions Module 6: Introduction to Time Series Forecasting Titus Awokuse and Tom Ilvento, University of Delaware, College of Agriculture and Natural Resources, Food and
Studying Achievement
Journal of Business and Economics, ISSN 2155-7950, USA November 2014, Volume 5, No. 11, pp. 2052-2056 DOI: 10.15341/jbe(2155-7950)/11.05.2014/009 Academic Star Publishing Company, 2014 http://www.academicstar.us
Traffic Safety Facts. Research Note. Time Series Analysis and Forecast of Crash Fatalities during Six Holiday Periods Cejun Liu* and Chou-Lin Chen
Traffic Safety Facts Research Note March 2004 DOT HS 809 718 Time Series Analysis and Forecast of Crash Fatalities during Six Holiday Periods Cejun Liu* and Chou-Lin Chen Summary This research note uses
Predictive modelling around the world 28.11.13
Predictive modelling around the world 28.11.13 Agenda Why this presentation is really interesting Introduction to predictive modelling Case studies Conclusions Why this presentation is really interesting
Introduction to Big Data Analytics p. 1 Big Data Overview p. 2 Data Structures p. 5 Analyst Perspective on Data Repositories p.
Introduction p. xvii Introduction to Big Data Analytics p. 1 Big Data Overview p. 2 Data Structures p. 5 Analyst Perspective on Data Repositories p. 9 State of the Practice in Analytics p. 11 BI Versus
9th Russian Summer School in Information Retrieval Big Data Analytics with R
9th Russian Summer School in Information Retrieval Big Data Analytics with R Introduction to Time Series with R A. Karakitsiou A. Migdalas Industrial Logistics, ETS Institute Luleå University of Technology
Name: Srinivasan Govindaraj Title: Big Data Predictive Analytics
Name: Srinivasan Govindaraj Title: Big Data Predictive Analytics Please note the following IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice
BIG DATA COURSE 1 DATA QUALITY STRATEGIES - CUSTOMIZED TRAINING OUTLINE. Prepared by:
BIG DATA COURSE 1 DATA QUALITY STRATEGIES - CUSTOMIZED TRAINING OUTLINE Cerulium Corporation has provided quality education and consulting expertise for over six years. We offer customized solutions to
<Insert Picture Here> Extending Hyperion BI with the Oracle BI Server
Extending Hyperion BI with the Oracle BI Server Mark Ostroff Sr. BI Solutions Consultant Agenda Hyperion BI versus Hyperion BI with OBI Server Benefits of using Hyperion BI with the
Time series Forecasting using Holt-Winters Exponential Smoothing
Time series Forecasting using Holt-Winters Exponential Smoothing Prajakta S. Kalekar(04329008) Kanwal Rekhi School of Information Technology Under the guidance of Prof. Bernard December 6, 2004 Abstract
PREFACE INTRODUCTION MULTI-DIMENSIONAL MODEL. Chris Claterbos, Vlamis Software Solutions, Inc. [email protected]
BUILDING CUBES AND ANALYZING DATA USING ORACLE OLAP 11G Chris Claterbos, Vlamis Software Solutions, Inc. [email protected] PREFACE As of this writing, Oracle Business Intelligence and Oracle OLAP are
Time Series Analysis and Forecasting Methods for Temporal Mining of Interlinked Documents
Time Series Analysis and Forecasting Methods for Temporal Mining of Interlinked Documents Prasanna Desikan and Jaideep Srivastava Department of Computer Science University of Minnesota. @cs.umn.edu
Data Mining Algorithms Part 1. Dejan Sarka
Data Mining Algorithms Part 1 Dejan Sarka Join the conversation on Twitter: @DevWeek #DW2015 Instructor Bio Dejan Sarka ([email protected]) 30 years of experience SQL Server MVP, MCT, 13 books 7+ courses
Oracle BIEE 11g Reports and Dashboard Hands On
Username: student Oracle BIEE 11g Reports and Dashboard Hands On Vlamis Software Solutions is one of the most respected training organizations in the Oracle Business Intelligence community because our
Sales and operations planning (SOP) Demand forecasting
ing, introduction Sales and operations planning (SOP) forecasting To balance supply with demand and synchronize all operational plans Capture demand data forecasting Balancing of supply, demand, and budgets.
Introduction to Data Mining and Machine Learning Techniques. Iza Moise, Evangelos Pournaras, Dirk Helbing
Introduction to Data Mining and Machine Learning Techniques Iza Moise, Evangelos Pournaras, Dirk Helbing Iza Moise, Evangelos Pournaras, Dirk Helbing 1 Overview Main principles of data mining Definition
Data Mining Techniques and its Applications in Banking Sector
Data Mining Techniques and its Applications in Banking Sector Dr. K. Chitra 1, B. Subashini 2 1 Assistant Professor, Department of Computer Science, Government Arts College, Melur, Madurai. 2 Assistant
Fraud and Anomaly Detection Using Oracle Advanced Analytic Option 12c
Fraud and Anomaly Detection Using Oracle Advanced Analytic Option 12c Charlie Berger Sr. Director Product Management, Data Mining and Advanced Analytics [email protected] www.twitter.com/charliedatamine
Introduction to Data Mining
Introduction to Data Mining 1 Why Data Mining? Explosive Growth of Data Data collection and data availability Automated data collection tools, Internet, smartphones, Major sources of abundant data Business:
Forecasting methods applied to engineering management
Forecasting methods applied to engineering management Áron Szász-Gábor Abstract. This paper presents arguments for the usefulness of a simple forecasting application package for sustaining operational
Oracle Business Intelligence and Analytics Platform. SFOUG March 22, 2006. Shyam Varan Nath Oracle Corporation
Oracle Business Intelligence and Analytics Platform SFOUG March 22, 2006 Shyam Varan Nath Oracle Corporation 1 Agenda Introduction to Business Intelligence A brief look into Oracle Integrated BI platform
