Mike Schulte Data Scientist at the University of Pittsburgh Professor of Economics and Philosophy at Western Michigan University

Size: px
Start display at page:

Download "Mike Schulte Data Scientist at the University of Pittsburgh Professor of Economics and Philosophy at Western Michigan University"

Transcription

1

2 Mike Schulte Data Scientist at the University of Pittsburgh Professor of Economics and Philosophy at Western Michigan University

3 Advanced Analytics Introduced Advanced Analytics within SQL Server and Excel R and RStudio Connecting R to SQL Server Solution Examples

4

5

6 Summary Statistics Historical View Traditional Business Intelligence work does a lot of this already

7 Fit Mathematical Models Present Day View Captures current capabilities and performances

8 Fit Statistical Models Forward-Looking View Captures likely outcomes for the future based on past and present outcomes

9 SQL Server and basic SQL statements Excel Data Mining Add-In Analysis Services and DMX R and R Services Microsoft Azure Machine Learning

10

11 library(e1071) nb_model <- naivebayes(class~.,data = products)

12 Wizard interface no programming required! Contained within Excel Limited capabilities Older algorithms

13 More flexible than the Excel add-in Integrates well with the rest of the SQL stack Limited capabilities Older algorithms Requires specialized knowledge of DMX

14 Statistical programming environment Open source Powerful and flexible Large user community Requires specialized knowledge of, well, R!

15

16

17 Academic statisticians Pharmaceutical companies Government agencies Professional consultants Business analysts Converted SAS users! More

18 Create a System DSN for connection Connect R to your SQL Database Pull data from SQL to R Analyze the data to create a model Operationalize the model This can still be a useful way to use R with SQL Server.

19 Open Administrative Tools in Control Panel

20 Manage the ODBC Data Sources

21 Create a New System Data Source Name

22 Choose SQL Server Native Client 11.0

23 Choose the SQL Server Installation You Want

24 Recommended: Use Windows Authentication

25 Install RODBC Package in R

26 Issue standard queries Drop, create, and fetch tables List available tables See documentation for more

27 Load RODBC Package and Connect to DSN

28 You can now issue queries from within R!

29

30 library(rodbc) Bring the Data into R channel <- odbcconnect("rconnection") autodata <- sqlquery(channel, "SELECT id, mpg, cylinders, displacement, horsepower, weight, acceleration FROM [dbo].[autodata];") trainingdata <- autodata[complete.cases(autodata),] missingdata <- autodata[!complete.cases(autodata),]

31 Build a Linear Regression Model and Impute automodel <- lm(mpg~horsepower+weight, data=trainingdata) missingdata$mpg <- round(predict(automodel, newdata=missingdata),1)

32

33 Update Our Database with Imputed Values for(i in 1:length(missingdata$id)){ string1 <- "UPDATE dbo.autodata SET mpg = " string2 <- as.character(missingdata$mpg[i]) string3 <- " WHERE id = " string4 <- as.character(missingdata$id[i]) querystring <- paste(paste(paste(paste(string1,string2,sep=""), string3,sep=""),string4,sep="")) sqlquery(channel,querystring) }

34 Note that this approach is new with SQL Server 2016.

35 Advantages: Data do not have to move Performance improvement (scale, parallelism) Challenges: Harder to code Harder to set up access

36

37 There are lots of use cases that fit into several categories: Association Analysis (Market Basket Analysis) Classification Estimation Simulation and Optimization Clustering And more

38 Products often sell well together. Some of these patterns are well established and may only be confirmed by the analysis. More unexpected patterns, like the apocryphal beer and diapers example, might be discovered too, providing additional insight.

39 Explore associations Confirm expected patterns Find unexpected patterns Create actionable insights

40 Set up periodic monitoring of known rules Detect drops in association strength and investigate

41 A charter fishing company wishes to determine the optimal number of boats to have in service. Too many boats will mean wasted resources, while too few boats will mean missed opportunities.

42 Use historical and forecast data to fit a distribution

43 Use the fitted distribution to project revenue for each additional boat. Decide how many boats to keep!

44 We would like to group countries that are economically similar to one another.

45 We begin with data on each country: Median GDP Growth (3 years) Population (in millions) Enabling Trade Index

46 setwd("c:/users/michael/desktop/demos") dfrm <- read.csv(file="clustering-demo-data.csv", header=t,stringsasfactors=f) dfrm$scgdpg <- scale(dfrm$medgdpg,center=t,scale=t) dfrm$scpop <- scale(dfrm$pop13,center=t,scale=t) dfrm$sceti <- scale(dfrm$eti,center=t,scale=t) kmc <- kmeans(dfrm[,5:7],centers=5,nstart=10)

47 Cluster 1: 50 Countries

48 Cluster 2: 42 Countries

49 Cluster 3: 11 Countries

50 Cluster 4: 2 Countries

51 Cluster 5: 33 Countries

52 What sale price should I use for Froot Loops?

53 Use historical data to determine lift for each price point.

54 Use lift to determine relative profit for each price point. Recommend a sale price to your marketing and sales teams!

55 Two Broad Areas of Concern: Jobs Ethics

56

Data mining overview. Data Mining. Data mining overview. Data mining overview. Data mining overview. Data mining overview 3/24/2014

Data mining overview. Data Mining. Data mining overview. Data mining overview. Data mining overview. Data mining overview 3/24/2014 Data Mining Data mining processes What technological infrastructure is required? Data mining is a system of searching through large amounts of data for patterns. It is a relatively new concept which is

More information

Outrun Your Competition With SAS In-Memory Analytics Sascha Schubert Global Technology Practice, SAS

Outrun Your Competition With SAS In-Memory Analytics Sascha Schubert Global Technology Practice, SAS Outrun Your Competition With SAS In-Memory Analytics Sascha Schubert Global Technology Practice, SAS Topics AGENDA Challenges with Big Data Analytics How SAS can help you to minimize time to value with

More information

INTRODUCTION... 2 FEATURES OF DARWIN... 4 SPECIAL FEATURES OF DARWIN LATEST FEATURES OF DARWIN STRENGTHS & LIMITATIONS OF DARWIN...

INTRODUCTION... 2 FEATURES OF DARWIN... 4 SPECIAL FEATURES OF DARWIN LATEST FEATURES OF DARWIN STRENGTHS & LIMITATIONS OF DARWIN... INTRODUCTION... 2 WHAT IS DATA MINING?... 2 HOW TO ACHIEVE DATA MINING... 2 THE ROLE OF DARWIN... 3 FEATURES OF DARWIN... 4 USER FRIENDLY... 4 SCALABILITY... 6 VISUALIZATION... 8 FUNCTIONALITY... 10 Data

More information

Worldwide Hosted PBX Market Table of Contents. EasternManagementGroup 0

Worldwide Hosted PBX Market Table of Contents. EasternManagementGroup 0 Worldwide Hosted PBX Market 2018-2024 Table of Contents EasternManagementGroup 0 2018 The Eastern Management Group, Inc. EasternManagementGroup 1 Introduction Worldwide Hosted PBX Market 2018-2024 was

More information

SQL Server Machine Learning Marek Chmel & Vladimir Muzny

SQL Server Machine Learning Marek Chmel & Vladimir Muzny SQL Server Machine Learning Marek Chmel & Vladimir Muzny @VladimirMuzny & @MarekChmel MCTs, MVPs, MCSEs Data Enthusiasts! vladimir@datascienceteam.cz marek@datascienceteam.cz Session Agenda Machine learning

More information

TIM 50 - Business Information Systems

TIM 50 - Business Information Systems TIM 50 - Business Information Systems Lecture 15 UC Santa Cruz Nov 10, 2016 Class Announcements n Database Assignment 2 posted n Due 11/22 The Database Approach to Data Management The Final Database Design

More information

Data warehouse and Data Mining

Data warehouse and Data Mining Data warehouse and Data Mining Lecture No. 14 Data Mining and its techniques Naeem A. Mahoto Email: naeemmahoto@gmail.com Department of Software Engineering Mehran Univeristy of Engineering and Technology

More information

Informatica PowerExchange for Tableau User Guide

Informatica PowerExchange for Tableau User Guide Informatica PowerExchange for Tableau 10.2.1 User Guide Informatica PowerExchange for Tableau User Guide 10.2.1 May 2018 Copyright Informatica LLC 2015, 2018 This software and documentation are provided

More information

Microsoft Exam

Microsoft Exam Volume: 42 Questions Case Study: 1 Relecloud General Overview Relecloud is a social media company that processes hundreds of millions of social media posts per day and sells advertisements to several hundred

More information

BUILD BETTER MICROSOFT SQL SERVER SOLUTIONS Sales Conversation Card

BUILD BETTER MICROSOFT SQL SERVER SOLUTIONS Sales Conversation Card OVERVIEW SALES OPPORTUNITY Lenovo Database Solutions for Microsoft SQL Server bring together the right mix of hardware infrastructure, software, and services to optimize a wide range of data warehouse

More information

TIM 50 - Business Information Systems

TIM 50 - Business Information Systems TIM 50 - Business Information Systems Lecture 15 UC Santa Cruz May 20, 2014 Announcements DB 2 Due Tuesday Next Week The Database Approach to Data Management Database: Collection of related files containing

More information

Accelerate your SAS analytics to take the gold

Accelerate your SAS analytics to take the gold Accelerate your SAS analytics to take the gold A White Paper by Fuzzy Logix Whatever the nature of your business s analytics environment we are sure you are under increasing pressure to deliver more: more

More information

BEST BIG DATA CERTIFICATIONS

BEST BIG DATA CERTIFICATIONS VALIANCE INSIGHTS BIG DATA BEST BIG DATA CERTIFICATIONS email : info@valiancesolutions.com website : www.valiancesolutions.com VALIANCE SOLUTIONS Analytics: Optimizing Certificate Engineer Engineering

More information

Microsoft certified solutions associate

Microsoft certified solutions associate Microsoft certified solutions associate MCSA: BI Reporting This certification demonstrates your expertise in analyzing data with both Power BI and Excel. Exam 70-778/Course 20778 Analyzing and Visualizing

More information

CUSTOMER INTERACTION MANAGER WITH INTEGRATED DIGITAL MESSAGING

CUSTOMER INTERACTION MANAGER WITH INTEGRATED DIGITAL MESSAGING PRODUCT INSIGHT CUSTOMER INTERACTION MANAGER WITH INTEGRATED DIGITAL MESSAGING YOUR COMPLETE MARKETING COMMAND CENTER INTEGRATED MARKETING Bring all your marketing channels together PAGE 02 No more data

More information

Data Mining with Microsoft

Data Mining with Microsoft Data Mining with Microsoft Jamie MacLennan ZhaoHui Tang Bogdan Crivat WILEY Wiley Publishing, Inc. Contents at a Glance Foreword Introduction Chapter 1 Chapter 2 Chapter 3 Chapter 4 Chapter 5 Chapter 6

More information

Think & Work like a Data Scientist with SQL 2016 & R DR. SUBRAMANI PARAMASIVAM (MANI)

Think & Work like a Data Scientist with SQL 2016 & R DR. SUBRAMANI PARAMASIVAM (MANI) Think & Work like a Data Scientist with SQL 2016 & R DR. SUBRAMANI PARAMASIVAM (MANI) About the Speaker Dr. SubraMANI Paramasivam PhD., MCT, MCSE, MCITP, MCP, MCTS, MCSA CEO, Principal Consultant & Trainer

More information

FIVE BEST PRACTICES FOR ENSURING A SUCCESSFUL SQL SERVER MIGRATION

FIVE BEST PRACTICES FOR ENSURING A SUCCESSFUL SQL SERVER MIGRATION FIVE BEST PRACTICES FOR ENSURING A SUCCESSFUL SQL SERVER MIGRATION The process of planning and executing SQL Server migrations can be complex and risk-prone. This is a case where the right approach and

More information

Integration of Economic and Construction Outlooks: A Case Study. Lorenz Kleist Consultant October 6, 2009

Integration of Economic and Construction Outlooks: A Case Study. Lorenz Kleist Consultant October 6, 2009 Integration of Economic and Construction Outlooks: A Case Study Lorenz Kleist Consultant October 6, 2009 The Client The European Rental Association (ERA) ERA is a young European association ERA represents

More information

R Language for the SQL Server DBA

R Language for the SQL Server DBA R Language for the SQL Server DBA Beginning with R Ing. Eduardo Castro, PhD, Principal Data Analyst Architect, LP Consulting Moderated By: Jose Rolando Guay Paz Thank You microsoft.com idera.com attunity.com

More information

Now, Data Mining Is Within Your Reach

Now, Data Mining Is Within Your Reach Clementine Desktop Specifications Now, Data Mining Is Within Your Reach Data mining delivers significant, measurable value. By uncovering previously unknown patterns and connections in data, data mining

More information

Management Information Systems MANAGING THE DIGITAL FIRM, 12 TH EDITION FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT

Management Information Systems MANAGING THE DIGITAL FIRM, 12 TH EDITION FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT MANAGING THE DIGITAL FIRM, 12 TH EDITION Chapter 6 FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT VIDEO CASES Case 1: Maruti Suzuki Business Intelligence and Enterprise Databases

More information

ACHIEVEMENTS FROM TRAINING

ACHIEVEMENTS FROM TRAINING LEARN WELL TECHNOCRAFT DATA SCIENCE/ MACHINE LEARNING SYLLABUS 8TH YEAR OF ACCOMPLISHMENTS AUTHORIZED GLOBAL CERTIFICATION CENTER FOR MICROSOFT, ORACLE, IBM, AWS AND MANY MORE. 8411002339/7709292162 WWW.DW-LEARNWELL.COM

More information

Sage MAS 200 SQL Server Edition Introduction and Overview

Sage MAS 200 SQL Server Edition Introduction and Overview Sage MAS 200 SQL Server Edition Introduction and Overview February 2006 1 TABLE OF CONTENTS Introduction... 3 Business Applications and Appropriate Technology... 3 Industry Standard...3 Rapid Deployment...4

More information

Citizen Data Scientist is the new Data Analyst

Citizen Data Scientist is the new Data Analyst Welcome # T C 1 8 Citizen Data Scientist is the new Data Analyst Mehmet Vanli Sales Consultant Tableau Australia Citizen data scientist: A person who creates models that use advanced diagnostic analytics

More information

Fast Innovation requires Fast IT

Fast Innovation requires Fast IT Fast Innovation requires Fast IT Cisco Data Virtualization Puneet Kumar Bhugra Business Solutions Manager 1 Challenge In Data, Big Data & Analytics Siloed, Multiple Sources Business Outcomes Business Opportunity:

More information

SIP Global Market 7-Year Forecast and Analysis. Table of Contents. EasternManagementGroup 0

SIP Global Market 7-Year Forecast and Analysis. Table of Contents. EasternManagementGroup 0 2018-2024 SIP Global Market 7-Year Forecast and Analysis Table of Contents EasternManagementGroup 0 2018 The Eastern Management Group, Inc. EasternManagementGroup 1 Introduction 2018-2024 SIP Global Market

More information

Lesson 3: Building a Market Basket Scenario (Intermediate Data Mining Tutorial)

Lesson 3: Building a Market Basket Scenario (Intermediate Data Mining Tutorial) From this diagram, you can see that the aggregated mining model preserves the overall range and trends in values while minimizing the fluctuations in the individual data series. Conclusion You have learned

More information

Introduction to Data Mining and Data Analytics

Introduction to Data Mining and Data Analytics 1/28/2016 MIST.7060 Data Analytics 1 Introduction to Data Mining and Data Analytics What Are Data Mining and Data Analytics? Data mining is the process of discovering hidden patterns in data, where Patterns

More information

Taking Your Application Design to the Next Level with Data Mining

Taking Your Application Design to the Next Level with Data Mining Taking Your Application Design to the Next Level with Data Mining Peter Myers Mentor SolidQ Australia HDNUG 24 June, 2008 WHO WE ARE Industry experts: Growing, elite group of over 90 of the world s best

More information

Data Mining: Approach Towards The Accuracy Using Teradata!

Data Mining: Approach Towards The Accuracy Using Teradata! Data Mining: Approach Towards The Accuracy Using Teradata! Shubhangi Pharande Department of MCA NBNSSOCS,Sinhgad Institute Simantini Nalawade Department of MCA NBNSSOCS,Sinhgad Institute Ajay Nalawade

More information

Collaboration on Cybersecurity program between California University and Shippensburg University

Collaboration on Cybersecurity program between California University and Shippensburg University Collaboration on Cybersecurity program between California University and Shippensburg University Weifeng Chen Dept. of Math, Computer Science and Information Systems California University, California,

More information

DIWAX Data handling and forecasting based on National Accounts

DIWAX Data handling and forecasting based on National Accounts Berliner VGR-Kolloquium, 5./6. Juni 2008 Data handling and forecasting based on National Accounts Dr. Stefan Kooths DIW Berlin Macro Analysis and Forecasting in a nutshell Support for macroeconomic forecasting

More information

Asanka Padmakumara. ETL 2.0: Data Engineering with Azure Databricks

Asanka Padmakumara. ETL 2.0: Data Engineering with Azure Databricks Asanka Padmakumara ETL 2.0: Data Engineering with Azure Databricks Who am I? Asanka Padmakumara Business Intelligence Consultant, More than 8 years in BI and Data Warehousing A regular speaker in data

More information

Oracle9i Data Mining. An Oracle White Paper December 2001

Oracle9i Data Mining. An Oracle White Paper December 2001 Oracle9i Data Mining An Oracle White Paper December 2001 Oracle9i Data Mining Benefits and Uses of Data Mining... 2 What Is Data Mining?... 3 Data Mining Concepts... 4 Using the Past to Predict the Future...

More information

Transforming IT: From Silos To Services

Transforming IT: From Silos To Services Transforming IT: From Silos To Services Chuck Hollis Global Marketing CTO EMC Corporation http://chucksblog.emc.com @chuckhollis IT is being transformed. Our world is changing fast New Technologies New

More information

DATA SCIENCE INTRODUCTION QSHORE TECHNOLOGIES. About the Course:

DATA SCIENCE INTRODUCTION QSHORE TECHNOLOGIES. About the Course: DATA SCIENCE About the Course: In this course you will get an introduction to the main tools and ideas which are required for Data Scientist/Business Analyst/Data Analyst/Analytics Manager/Actuarial Scientist/Business

More information

Hybrid Cloud 1. ebookiness created by the HPE Europe Division of Ingram Micro

Hybrid Cloud 1. ebookiness created by the HPE Europe Division of Ingram Micro Hybrid Cloud 1 contents 3 Hybrid IT: the path to the Cloud HPE & Microsoft: the strongest commitment to the Hybrid cloud 4 5 Accelerate your business with the hybrid cloud offered by HPE and Azure Why

More information

Crystal Reports. Overview. Contents. How to report off a Teradata Database

Crystal Reports. Overview. Contents. How to report off a Teradata Database Crystal Reports How to report off a Teradata Database Overview What is Teradata? NCR Teradata is a database and data warehouse software developer. This whitepaper will give you some basic information on

More information

Data Science and Open Source Software. Iraklis Varlamis Assistant Professor Harokopio University of Athens

Data Science and Open Source Software. Iraklis Varlamis Assistant Professor Harokopio University of Athens Data Science and Open Source Software Iraklis Varlamis Assistant Professor Harokopio University of Athens varlamis@hua.gr What is data science? 2 Why data science is important? More data (volume, variety,...)

More information

Oracle and Tangosol Acquisition Announcement

Oracle and Tangosol Acquisition Announcement Oracle and Tangosol Acquisition Announcement March 23, 2007 The following is intended to outline our general product direction. It is intended for information purposes only, and may

More information

Lab 3: From Data to Models

Lab 3: From Data to Models Lab 3: From Data to Models One of the goals of mathematics is to explain phenomena represented by data. In the business world, there is an increasing dependence on models. We may want to represent sales

More information

Global Optical Connectors Market: Analysis By Type (Board to Board, Edge Card, Mid Board), By Application, By Region, By Country ( )

Global Optical Connectors Market: Analysis By Type (Board to Board, Edge Card, Mid Board), By Application, By Region, By Country ( ) Global Optical Connectors Market: Analysis By Type (Board to Board, Edge Card, Mid Board), By Application (Data Centre, Telecom, Automotive, Others), By Region, By Country: Opportunities and Forecast (2017-2022)

More information

Aeg eksperimenteerida otsimotooriturundusega (mõõdukalt ja mõõdetavalt) Robin Gurney

Aeg eksperimenteerida otsimotooriturundusega (mõõdukalt ja mõõdetavalt) Robin Gurney Aeg eksperimenteerida otsimotooriturundusega (mõõdukalt ja mõõdetavalt) Robin Gurney Search Marketing is important ..because» More and more people use search» In Estonia more the most popular search tools

More information

Introducing SAS Model Manager 15.1 for SAS Viya

Introducing SAS Model Manager 15.1 for SAS Viya ABSTRACT Paper SAS2284-2018 Introducing SAS Model Manager 15.1 for SAS Viya Glenn Clingroth, Robert Chu, Steve Sparano, David Duling SAS Institute Inc. SAS Model Manager has been a popular product since

More information

The DataBridge: A Social Network for Long Tail Science Data!

The DataBridge: A Social Network for Long Tail Science Data! The DataBridge: A Social Network for Long Tail Science Data Howard Lander howard@renci.org Renaissance Computing Institute The University of North Carolina at Chapel Hill Outline of This Talk The DataBridge

More information

BOARD OF REGENTS ACADEMIC AFFAIRS COMMITTEE 4 STATE OF IOWA SEPTEMBER 12-13, 2018

BOARD OF REGENTS ACADEMIC AFFAIRS COMMITTEE 4 STATE OF IOWA SEPTEMBER 12-13, 2018 STATE OF IOWA SEPTEMBER 12-13, 2018 REQUEST FOR NEW PROGRAM AT IOWA STATE UNIVERSITY: BACHELOR OF SCIENCE IN CYBER SECURITY ENGINEERING Contact: Rachel Boon Action Requested: Consider approval of the request

More information

Integrating Large Datasets from Multiple Sources Calgary SAS Users Group (CSUG)

Integrating Large Datasets from Multiple Sources Calgary SAS Users Group (CSUG) Integrating Large Datasets from Multiple Sources Calgary SAS Users Group (CSUG) October 25, 2017 Hotel Le-Germain Outline About the AESO Large Datasets: AESO Context Usual Process Obtain data Connecting

More information

Data Warehouse Testing. By: Rakesh Kumar Sharma

Data Warehouse Testing. By: Rakesh Kumar Sharma Data Warehouse Testing By: Rakesh Kumar Sharma Index...2 Introduction...3 About Data Warehouse...3 Data Warehouse definition...3 Testing Process for Data warehouse:...3 Requirements Testing :...3 Unit

More information

Worldwide Consumer Digital Camera Forecast Summary:

Worldwide Consumer Digital Camera Forecast Summary: February 20, 2008 Abstract Worldwide Consumer Digital Camera Forecast Summary: 2007-2012 Report Fast Facts Published: February 2008 Pages: 36 Figures: 18 Tables: 16 Price: $4,235 Order Information To place

More information

Indira Bandari. Predictive Analytics using R in SQL Server

Indira Bandari. Predictive Analytics using R in SQL Server Indira Bandari Predictive Analytics using R in SQL Server Agenda What is Predictive Analytics? Analytics vs. Predictive Analytics Benefits of using R Predictive Analytics Life Cycle Demo Indira Bandari

More information

10778A: Implementing Data Models and Reports with Microsoft SQL Server 2012

10778A: Implementing Data Models and Reports with Microsoft SQL Server 2012 10778A: Implementing Data Models and Reports with Microsoft SQL Server 2012 Course Overview This course provides students with the knowledge and skills to empower information workers through self-service

More information

Processing Unstructured Data. Dinesh Priyankara Founder/Principal Architect dinesql Pvt Ltd.

Processing Unstructured Data. Dinesh Priyankara Founder/Principal Architect dinesql Pvt Ltd. Processing Unstructured Data Dinesh Priyankara Founder/Principal Architect dinesql Pvt Ltd. http://dinesql.com / Dinesh Priyankara @dinesh_priya Founder/Principal Architect dinesql Pvt Ltd. Microsoft Most

More information

Overview. Introduction to Data Warehousing and Business Intelligence. BI Is Important. What is Business Intelligence (BI)?

Overview. Introduction to Data Warehousing and Business Intelligence. BI Is Important. What is Business Intelligence (BI)? Introduction to Data Warehousing and Business Intelligence Overview Why Business Intelligence? Data analysis problems Data Warehouse (DW) introduction A tour of the coming DW lectures DW Applications Loosely

More information

Professional certification from BCS, The Chartered Institute for IT. bcs.org/certification

Professional certification from BCS, The Chartered Institute for IT. bcs.org/certification Professional certification from BCS, The Chartered Institute for IT bcs.org/certification 02 03 INTRODUCTION BCS, The Chartered Institute for IT, is the leading institute for IT professionals around the

More information

Socioeconomic Overview of Ohio

Socioeconomic Overview of Ohio 2 Socioeconomic Overview of Ohio Introduction The magnitude of the economic impact of Ohio s airports is linked to the demand that is generated within the state for aviation goods and services. As population,

More information

STREAMLINED CERTIFICATION PATHS

STREAMLINED CERTIFICATION PATHS STREAMLINED CERTIFICATION PATHS MOBILITY 10 Mobility CLOUD PLATFORM & INFRASTRUCTURE Server 2016 Cloud Platform & Infrastructure Linux on Azure Cloud Platform PRODUCTIVITY Server 2016 Productivity Office

More information

Getting Started with Advanced Analytics in Finance, Marketing, and Operations

Getting Started with Advanced Analytics in Finance, Marketing, and Operations Getting Started with Advanced Analytics in Finance, Marketing, and Operations Southwest Regional Oracle Applications User Group Dan Vlamis February 24, 2017 @VlamisSoftware Vlamis Software Solutions Vlamis

More information

Introducing Oracle R Enterprise 1.4 -

Introducing Oracle R Enterprise 1.4 - Hello, and welcome to this online, self-paced lesson entitled Introducing Oracle R Enterprise. This session is part of an eight-lesson tutorial series on Oracle R Enterprise. My name is Brian Pottle. I

More information

Introduction to Data Mining. Rafal Lukawiecki Strategic Consultant, Project Botticelli Ltd

Introduction to Data Mining. Rafal Lukawiecki Strategic Consultant, Project Botticelli Ltd Introduction to Data Mining Rafal Lukawiecki Strategic Consultant, Project Botticelli Ltd rafal@projectbotticelli.co.uk Objectives Overview Data Mining Introduce typical applications and scenarios Explain

More information

5/24/ MVP SQL Server: Architecture since 2010 MCT since 2001 Consultant and trainer since 1992

5/24/ MVP SQL Server: Architecture since 2010 MCT since 2001 Consultant and trainer since 1992 2014-05-20 MVP SQL Server: Architecture since 2010 MCT since 2001 Consultant and trainer since 1992 @SoQooL http://blog.mssqlserver.se Mattias.Lind@Sogeti.se 1 The evolution of the Microsoft data platform

More information

Session Questions and Responses

Session Questions and Responses Product: Topic: Audience: Updated: OpenText Image Crawler Webinar Questions ILTA February 10, 2015 Discover How to Make your Scanned Images Searchable with OpenText Image Crawler Session Questions and

More information

Deltek Touch CRM for Deltek CRM. User Guide

Deltek Touch CRM for Deltek CRM. User Guide Deltek Touch CRM for Deltek CRM User Guide February 2017 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical or technical errors may

More information

Note: In the presentation I should have said "baby registry" instead of "bridal registry," see

Note: In the presentation I should have said baby registry instead of bridal registry, see Q-and-A from the Data-Mining Webinar Note: In the presentation I should have said "baby registry" instead of "bridal registry," see http://www.target.com/babyregistryportalview Q: You mentioned the 'Big

More information

2(&'ÃJOREDOÃFRQIHUHQFHÃRQ WHOHFRPPXQLFDWLRQVÃSROLF\ÃIRUÃWKH GLJLWDOÃHFRQRP\

2(&'ÃJOREDOÃFRQIHUHQFHÃRQ WHOHFRPPXQLFDWLRQVÃSROLF\ÃIRUÃWKH GLJLWDOÃHFRQRP\ 2(&'ÃJOREDOÃFRQIHUHQFHÃRQ WHOHFRPPXQLFDWLRQVÃSROLF\ÃIRUÃWKH GLJLWDOÃHFRQRP\ Competition and an incumbent operator John Butler January 22 British Telecommunications experience of telecommunications liberalisation

More information

ER/Studio Enterprise Portal Evaluation Guide. Published: March 6, 2009

ER/Studio Enterprise Portal Evaluation Guide. Published: March 6, 2009 ER/Studio Enterprise Portal 1.0.3 Evaluation Guide Published: March 6, 2009 Contents Introduction to ER/Studio Enterprise Portal 1.0... 3 Session 1: Getting Started with the Enterprise Portal... 4 Session

More information

From Single Purpose to Multi Purpose Data Lakes. Thomas Niewel Technical Sales Director DACH Denodo Technologies March, 2019

From Single Purpose to Multi Purpose Data Lakes. Thomas Niewel Technical Sales Director DACH Denodo Technologies March, 2019 From Single Purpose to Multi Purpose Data Lakes Thomas Niewel Technical Sales Director DACH Denodo Technologies March, 2019 Agenda Data Lakes Multiple Purpose Data Lakes Customer Example Demo Takeaways

More information

Introduction of the Industrial Internet Consortium. May 2016

Introduction of the Industrial Internet Consortium. May 2016 Introduction of the Industrial Internet Consortium May 2016 An Open Membership Consortium now 250 companies strong May 26, 2016 2 IIC Founders, Contributing Members, & Large Industry Members IIC Founding

More information

Data Warehousing & Mining. Data integration. OLTP versus OLAP. CPS 116 Introduction to Database Systems

Data Warehousing & Mining. Data integration. OLTP versus OLAP. CPS 116 Introduction to Database Systems Data Warehousing & Mining CPS 116 Introduction to Database Systems Data integration 2 Data resides in many distributed, heterogeneous OLTP (On-Line Transaction Processing) sources Sales, inventory, customer,

More information

VACANCY ANNOUNCEMENT

VACANCY ANNOUNCEMENT THE UNITED REPUBLIC OF TANZANIA PRESIDENT S OFFICE PUBLIC SERVICE RECRUITMENT SECRETARIAT Ref.No.EA.7/96/01/J/81 20 th December, 2017 VACANCY ANNOUNCEMENT On behalf of the Tanzania Communications Regulatory

More information

Lavastorm Analytic Library Predictive and Statistical Analytics Node Pack FAQs

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

More information

Marco Porta Betim Çiço Peter Kaczmarski Neki Frasheri Virginio Cantoni. Fernand Vandamme (BIKEMA)

Marco Porta Betim Çiço Peter Kaczmarski Neki Frasheri Virginio Cantoni. Fernand Vandamme (BIKEMA) New Trends in Information Technologies and Their Integration in University Curricula: a Brief Study in the Context of the FETCH European Thematic Network Marco Porta Betim Çiço Peter Kaczmarski Neki Frasheri

More information

Lies, Damned Lies and Statistics Using Data Mining Techniques to Find the True Facts.

Lies, Damned Lies and Statistics Using Data Mining Techniques to Find the True Facts. Lies, Damned Lies and Statistics Using Data Mining Techniques to Find the True Facts. BY SCOTT A. BARNES, CPA, CFF, CGMA The adversarial nature of the American legal system creates a natural conflict between

More information

QMF Analytics v11: Not Your Green Screen QMF

QMF Analytics v11: Not Your Green Screen QMF QMF Analytics v11: Not Your Green Screen QMF Central Ohio Db2 Users Group CODUG December 5, 2017 Roger Midgette The Fillmore Group Frank Fillmore The Fillmore Group Doug Anderson Rocket Software roger.midgette@thefillmoregroup.com

More information

What is Data Warehouse like

What is Data Warehouse like What is Data Warehouse like in the Big Data Era? Sales (Asia) Data Warehouse Sales (US) ETL ETL Collects and organizes historical data from multiple sources Inventory Advertising ETL ETL So far Ø Star

More information

Innovation Infrastructure Partnership

Innovation Infrastructure Partnership Innovation Infrastructure Partnership Vision The Innovation Infrastructure Partnership s vision is to support the creation, adoption and commercialisation of new technologies, helping UK companies to gain

More information

Outlier Detection With SQL And R. Kevin Feasel, Engineering Manager, ChannelAdvisor Moderated By: Satya Jayanty

Outlier Detection With SQL And R. Kevin Feasel, Engineering Manager, ChannelAdvisor Moderated By: Satya Jayanty Outlier Detection With SQL And R Kevin Feasel, Engineering Manager, ChannelAdvisor Moderated By: Satya Jayanty Technical Assistance If you require assistance during the session, type your inquiry into

More information

2017 Ethics & Compliance Hotline & Incident Management Benchmark Report Webinar

2017 Ethics & Compliance Hotline & Incident Management Benchmark Report Webinar 2017 Ethics & Compliance Hotline & Incident Management Benchmark Report Webinar Presented by Carrie Penman Chief Compliance Officer & Senior Vice President, Advisory Services Edwin O Mara Operations Manager,

More information

Intelligent Enterprise meets Science of Where. Anand Raisinghani Head Platform & Data Management SAP India 10 September, 2018

Intelligent Enterprise meets Science of Where. Anand Raisinghani Head Platform & Data Management SAP India 10 September, 2018 Intelligent Enterprise meets Science of Where Anand Raisinghani Head Platform & Data Management SAP India 10 September, 2018 Value The Esri & SAP journey Customer Impact Innovation Track Record Customer

More information

Overview of the Information Technology Management Concentration & Career Focuses

Overview of the Information Technology Management Concentration & Career Focuses Overview of the Information Technology Management Concentration & Career Focuses The Information Technology Management concentration is about using information technology to solve business problems. This

More information

UNLEASHING THE VALUE OF THE TERADATA UNIFIED DATA ARCHITECTURE WITH ALTERYX

UNLEASHING THE VALUE OF THE TERADATA UNIFIED DATA ARCHITECTURE WITH ALTERYX UNLEASHING THE VALUE OF THE TERADATA UNIFIED DATA ARCHITECTURE WITH ALTERYX 1 Successful companies know that analytics are key to winning customer loyalty, optimizing business processes and beating their

More information

Symantec and its partner community are securing the cloud generation, together

Symantec and its partner community are securing the cloud generation, together Symantec and its partner community are securing the cloud generation, together Guide to the Symantec Secure One partner program Create Solve Support Secure October 2017 Table of Contents Secure One Program

More information

Data Warehouse and Data Mining

Data Warehouse and Data Mining Data Warehouse and Data Mining Lecture No. 07 Terminologies Naeem Ahmed Email: naeemmahoto@gmail.com Department of Software Engineering Mehran Univeristy of Engineering and Technology Jamshoro Database

More information

Qualification Specification for the Knowledge Modules that form part of the BCS Level 4 Software Developer Apprenticeship

Qualification Specification for the Knowledge Modules that form part of the BCS Level 4 Software Developer Apprenticeship Qualification Specification for the Knowledge Modules that form part of the BCS Level 4 Software Developer Apprenticeship BCS Level 4 Diploma in Software Development Methodologies BCS Level 4 Diploma in

More information

Gemalto brings trust to an increasingly connected world

Gemalto brings trust to an increasingly connected world DIGITAL IDENTITY 10 0110 010 0 0110 0 0 1 1 101010 0 0111010 0110 010 001100011101010 0 0111010 0110 010 0 0110 0 011101010 0 0111010 0110 010 0 0110 0 011101010 0 0111010 0110 010 0 0110 0011101010 0

More information

ADVANCED ANALYTICS USING SAS ENTERPRISE MINER RENS FEENSTRA

ADVANCED ANALYTICS USING SAS ENTERPRISE MINER RENS FEENSTRA INSIGHTS@SAS: ADVANCED ANALYTICS USING SAS ENTERPRISE MINER RENS FEENSTRA AGENDA 09.00 09.15 Intro 09.15 10.30 Analytics using SAS Enterprise Guide Ellen Lokollo 10.45 12.00 Advanced Analytics using SAS

More information

Microsoft SharePoint Server 2013 Plan, Configure & Manage

Microsoft SharePoint Server 2013 Plan, Configure & Manage Microsoft SharePoint Server 2013 Plan, Configure & Manage Course 20331-20332B 5 Days Instructor-led, Hands on Course Information This five day instructor-led course omits the overlap and redundancy that

More information

Paper SAS Taming the Rule. Charlotte Crain, Chris Upton, SAS Institute Inc.

Paper SAS Taming the Rule. Charlotte Crain, Chris Upton, SAS Institute Inc. ABSTRACT Paper SAS2620-2016 Taming the Rule Charlotte Crain, Chris Upton, SAS Institute Inc. When business rules are deployed and executed--whether a rule is fired or not if the rule-fire outcomes are

More information

Slice Intelligence!

Slice Intelligence! Intern @ Slice Intelligence! Wei1an(Wu( September(8,(2014( Outline!! Details about the job!! Skills required and learned!! My thoughts regarding the internship! About the company!! Slice, which we call

More information

THE TRUSTED NETWORK POWERING GLOBAL SUPPLY CHAINS AND THEIR COMMUNITIES APPROVED EDUCATION PROVIDER INFORMATION PACK

THE TRUSTED NETWORK POWERING GLOBAL SUPPLY CHAINS AND THEIR COMMUNITIES APPROVED EDUCATION PROVIDER INFORMATION PACK GAIN RECOGNITION AS AN APPROVED PROVIDER UNDER ISO/IEC 17024 AND JOIN OUR NETWORK OF TRUSTED PROVIDERS THE TRUSTED NETWORK POWERING GLOBAL SUPPLY CHAINS AND THEIR COMMUNITIES APPROVED EDUCATION PROVIDER

More information

MICROSOFT CLOUD PLATFORM AND INFRASTRUCTURE CERTIFICATION. Includes certifications for Microsoft Azure and Windows Server

MICROSOFT CLOUD PLATFORM AND INFRASTRUCTURE CERTIFICATION. Includes certifications for Microsoft Azure and Windows Server MICROSOFT CLOUD PLATFORM AND INFRASTRUCTURE CERTIFICATION Includes certifications for Microsoft Azure and Windows Server Microsoft Azure MCSA: Cloud Platform Pass 2 required exams. M20532 M20533 M20535

More information

Powering Knowledge Discovery. Insights from big data with Linguamatics I2E

Powering Knowledge Discovery. Insights from big data with Linguamatics I2E Powering Knowledge Discovery Insights from big data with Linguamatics I2E Gain actionable insights from unstructured data The world now generates an overwhelming amount of data, most of it written in natural

More information

Introducing Microsoft SQL Server 2016 R Services. Julian Lee Advanced Analytics Lead Global Black Belt Asia Timezone

Introducing Microsoft SQL Server 2016 R Services. Julian Lee Advanced Analytics Lead Global Black Belt Asia Timezone Introducing Microsoft SQL Server 2016 R Services Julian Lee Advanced Analytics Lead Global Black Belt Asia Timezone SQL Server 2016: Everything built-in built-in built-in built-in built-in built-in $2,230

More information

Lecture 18. Business Intelligence and Data Warehousing. 1:M Normalization. M:M Normalization 11/1/2017. Topics Covered

Lecture 18. Business Intelligence and Data Warehousing. 1:M Normalization. M:M Normalization 11/1/2017. Topics Covered Lecture 18 Business Intelligence and Data Warehousing BDIS 6.2 BSAD 141 Dave Novak Topics Covered Test # Review What is Business Intelligence? How can an organization be data rich and information poor?

More information

2017 USER SURVEY EXECUTIVE SUMMARY

2017 USER SURVEY EXECUTIVE SUMMARY 2017 USER SURVEY EXECUTIVE SUMMARY INTRODUCTION Survey methodology 2017 NODE.JS USER SURVEY The primary objective of the research was to profile Node.js users, understand usage patterns and trends and

More information

Global and Chinese Network Intrusion Prevention Systems (IPS) Products Industry, 2016 Market Research Report

Global and Chinese Network Intrusion Prevention Systems (IPS) Products Industry, 2016 Market Research Report Published on Market Research Reports Inc. (https://www.marketresearchreports.com) Home > Global and Chinese Network Intrusion Prevention Systems (IPS) Products Industry, 2016 Market Research Report Global

More information

Product Documentation SAP Business ByDesign February Marketing

Product Documentation SAP Business ByDesign February Marketing Product Documentation PUBLIC Marketing Table Of Contents 1 Marketing.... 5 2... 6 3 Business Background... 8 3.1 Target Groups and Campaign Management... 8 3.2 Lead Processing... 13 3.3 Opportunity Processing...

More information

Data Warehousing and Data Mining. Announcements (December 1) Data integration. CPS 116 Introduction to Database Systems

Data Warehousing and Data Mining. Announcements (December 1) Data integration. CPS 116 Introduction to Database Systems Data Warehousing and Data Mining CPS 116 Introduction to Database Systems Announcements (December 1) 2 Homework #4 due today Sample solution available Thursday Course project demo period has begun! Check

More information

Transforming the Economics of

Transforming the Economics of Transforming the Economics of Real-World Evidence Analytics Integrated environment expedites data availability, reduces costs, and extends business intelligence access throughout the organization 1 Executive

More information

Using the SAS Add-In for Microsoft Office you can access the power of SAS via three key mechanisms:

Using the SAS Add-In for Microsoft Office you can access the power of SAS via three key mechanisms: SAS Add-In for Microsoft Office Leveraging SAS Throughout the Organization from Microsoft Office Jennifer Clegg, SAS Institute Inc., Cary, NC Stephen McDaniel, SAS Institute Inc., Cary, NC ABSTRACT The

More information