SlideShare a Scribd company logo
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
create table t_test_data as
select * from (
select ora_hash(date_id, 1, 11) hashvalue, t.*
from t_all_data t
order by date_id
)
where hashvalue = 1;
create table t_training_data as
select * from (
select ora_hash(date_id, 1, 11) as hashvalue, t.*
from t_all_data t
order by date_id
)
where hashvalue = 0;
create table t_training_data as
select * from (
select *
from t_all_data SAMPLE (80) SEED (11)
);
create table t_test_data as
select * from (
select *
from t_all_data
MINUS
select *
from t_training_data
);
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
create table model_settings (
setting_name varchar2(30 char),
setting_value varchar2(30 char)
);
begin
insert into lds_model_settings (setting_name, setting_value)
values (dbms_data_mining.algo_name,
dbms_data_mining.algo_generalized_linear_model);
insert into lds_model_settings (setting_name, setting_value)
values (dbms_data_mining.odms_missing_value_treatment,
dbms_data_mining.odms_missing_value_mean_mode);
commit;
end;
/
insert into lds_model_settings (setting_name, setting_value)
values (dbms_data_mining.prep_auto,
dbms_data_mining.prep_auto_on);
begin
dbms_data_mining.create_model(
model_name => 'skier_model’,
mining_function => dbms_data_mining.regression,
data_table_name => 't_training_data’,
case_id_column_name => 'date_id’,
target_column_name => 'amount_skiers’,
settings_table_name => 'model_settings’
);
end;
/
Prediction of skier days with Oracle Data Mining
select
t.date_id,
prediction(skier_model using *) predicted_skiers
from t_test_data t ;
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
select *
from table
(dbms_data_mining.get_model_details_glm ('skier_model'));
coefficient
std_error
p-value
select *
from table
(dbms_data_mining.get_model_details_global
('skier_model'));
f-value
error_sum_squares
r2
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
→
Prediction of skier days with Oracle Data Mining
Prediction of skier days with Oracle Data Mining
•
•
•
•
•
•

More Related Content

PDF
Prediction of Skierdays With Oracle Data Mining - OGB EMEA Edition
PDF
Prediction of Skierdays with Oracle Data Mining - Analytics and Data Techcast...
ODT
PPTX
Oracle eCommerce (ATG) Database Best Practices
PPTX
Commands
PPTX
arrays in c
PDF
Sql queries - Basics
PDF
C Language Lecture 12
Prediction of Skierdays With Oracle Data Mining - OGB EMEA Edition
Prediction of Skierdays with Oracle Data Mining - Analytics and Data Techcast...
Oracle eCommerce (ATG) Database Best Practices
Commands
arrays in c
Sql queries - Basics
C Language Lecture 12

What's hot (20)

DOCX
Msql query
PDF
Sql commands
PPTX
Lecture 3 sql {basics ddl commands}
PPTX
Obtain better data accuracy using reference tables
PPTX
Lecture 4 sql {basics keys and constraints}
PDF
ARRAYS
PPTX
Sql
DOCX
Sql reference from w3 schools
PDF
Python For Data Science Cheat Sheet
PPSX
6 enumerated, typedef
PPT
MY SQL
PPTX
Interacting with Oracle Database
PPT
Lec 25 - arrays-strings
PDF
Data transformation-cheatsheet
PPTX
PPT
PPT
Oracle Advanced Dml
PDF
Recursion Lecture in C++
PPT
Sql tables
PPTX
SQL Tutorial for Beginners
Msql query
Sql commands
Lecture 3 sql {basics ddl commands}
Obtain better data accuracy using reference tables
Lecture 4 sql {basics keys and constraints}
ARRAYS
Sql
Sql reference from w3 schools
Python For Data Science Cheat Sheet
6 enumerated, typedef
MY SQL
Interacting with Oracle Database
Lec 25 - arrays-strings
Data transformation-cheatsheet
Oracle Advanced Dml
Recursion Lecture in C++
Sql tables
SQL Tutorial for Beginners
Ad

Similar to Prediction of skier days with Oracle Data Mining (10)

PPT
Mysql 120831075600-phpapp01
PPTX
SQL command practical power point slides, which help you in learning sql.pptx
PDF
dbms.pdf
PPTX
ADV PPT 2 LAB.pptx
DOC
My problem
PPT
Tables And SQL basics
PDF
MySQL 8.0 NF : Common Table Expressions (CTE)
DOCX
lab08build.bat@echo offclsset DRIVE_LETTER=1s.docx
PDF
Cheat Sheet for Stata v15.00 PDF Complete
PPTX
SQL Class Note By Amit Maity PowerPoint Presentation
Mysql 120831075600-phpapp01
SQL command practical power point slides, which help you in learning sql.pptx
dbms.pdf
ADV PPT 2 LAB.pptx
My problem
Tables And SQL basics
MySQL 8.0 NF : Common Table Expressions (CTE)
lab08build.bat@echo offclsset DRIVE_LETTER=1s.docx
Cheat Sheet for Stata v15.00 PDF Complete
SQL Class Note By Amit Maity PowerPoint Presentation
Ad

More from Jasmin Fluri (10)

PDF
Relational Database CI/CD
PPTX
The Science of database CICD - UKOUG Breakthrough
PPTX
Git Branching – the battle of the ages
PDF
Testing your data mart - how to start | DOAG 2021
PDF
Myth Busting - NoSQL vs SQL Data Stores - Guild42
PDF
Myth Busting - NoSQL vs SQL Data Stores - Video Edition
PDF
Myth Busting - NoSQL vs SQL Data Stores
PDF
AskTom Office Hours about Database Migrations
PDF
Learnings about Automated deployments of Database Applications
PDF
Automated delivery in the data warehouse SOUG Day Romandie - 21 May 2019
Relational Database CI/CD
The Science of database CICD - UKOUG Breakthrough
Git Branching – the battle of the ages
Testing your data mart - how to start | DOAG 2021
Myth Busting - NoSQL vs SQL Data Stores - Guild42
Myth Busting - NoSQL vs SQL Data Stores - Video Edition
Myth Busting - NoSQL vs SQL Data Stores
AskTom Office Hours about Database Migrations
Learnings about Automated deployments of Database Applications
Automated delivery in the data warehouse SOUG Day Romandie - 21 May 2019

Recently uploaded (20)

PPTX
CHAPTER 2 - PM Management and IT Context
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
System and Network Administration Chapter 2
PDF
Understanding Forklifts - TECH EHS Solution
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PPTX
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PPTX
Transform Your Business with a Software ERP System
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Introduction to Artificial Intelligence
PPTX
Computer Software and OS of computer science of grade 11.pptx
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
CHAPTER 2 - PM Management and IT Context
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PTS Company Brochure 2025 (1).pdf.......
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Navsoft: AI-Powered Business Solutions & Custom Software Development
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Odoo Companies in India – Driving Business Transformation.pdf
System and Network Administration Chapter 2
Understanding Forklifts - TECH EHS Solution
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
VVF-Customer-Presentation2025-Ver1.9.pptx
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
wealthsignaloriginal-com-DS-text-... (1).pdf
Transform Your Business with a Software ERP System
Softaken Excel to vCard Converter Software.pdf
Introduction to Artificial Intelligence
Computer Software and OS of computer science of grade 11.pptx
How to Choose the Right IT Partner for Your Business in Malaysia
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool

Prediction of skier days with Oracle Data Mining