3 Ways to Improve Your Targeted Marketing with Analytics

Size: px
Start display at page:

Download "3 Ways to Improve Your Targeted Marketing with Analytics"

Transcription

1 3 Ways to Improve Your Targeted Marketing with Analytics Introduction Targeted marketing is a simple concept, but a key element in a marketing strategy. The goal is to identify the potential customers who are most likely to buy what you are selling. Once you have identified this target group of people, you can focus your marketing efforts in their direction. This process could substantially decrease marketing costs. In this tutorial, you will use data from a Portuguese banking institution whose goal is to cut down on their telemarketing costs 1. They want to call only the clients most likely to subscribe to a long-term deposit. By using modern data mining approaches (TreeNet, MARS, and RandomForests), you will build a model to successfully identify which customers to target and explore the characteristics of this market. Tutorial 1) Open SPM : 1 [Moro et al., 2014] S. Moro, P. Cortez and P. Rita. A Data-Driven Approach to Predict the Success of Bank Telemarketing. Decision Support Systems, Elsevier, 62:22-31, June 2014

2 2) Click the folder shortcut to open a data file: 3) Locate bank.csv (or your chosen file name) and click Open.

3 The Activity Window, pictured below, will appear: This file contains 41,188 records of telemarketing calls at the Portuguese bank. On the left side of the Activity Window, you can see the variables in the data file. These include attributes of the prospect (i.e. age, marital status, education), economic indicators (i.e. consumer price index, employment numbers), and campaign variables (i.e. type of contact, date of last contact). At the bottom of the Activity Window, a row of buttons gives you options to view the data, create graphs, and run statistics, among other features.

4 4) At the bottom of the Activity Window, click the View Data button: The spreadsheet pictured below will appear with the data: Note that there are missing values and both categorical and numeric variables. Exact variable definitions can be found at

5 5) Return to the Activity Window via the shortcut : 6) Click Stats:

6 The Descriptive Stats dialog box will appear: 7) Check that Detailed Stats and Tables is selected along with all of the variables in the dataset. Enter 100,000 in the box next to Max. distinct values to track to be sure all values will be displayed. 8) Click OK.

7 The results will appear in a window with one variable per row: For example, you can see variable DEFAULT$ is 20.87% missing and has 2 distinct levels. 9) For more detailed statistics, click the Full button in the upper right corner of the window:

8 This view gives, for each variable, descriptive statistics, location variables, variability, quantiles, and frequency tables. Running descriptive statistics before building a model gives you a better idea about the variables you are including, or leaving out, of your model. 10) Scroll over until you reach the target variable, SUBSCRIBED. Click the plus sign next to Frequency Tables : Note that of the 41,188 records, only 11.27% of the calls ended in subscriptions.

9 11) Click the Model Setup shortcut : In the Analysis Method drop-down menu, choose TreeNet. As the Analysis Type, choose Logistic Binary. In the Variable Selection window, choose SUBSCRIBED in the Target column and the remaining variables in the Predictor column. Scroll through the list and UNCHECK the following variables: TEST80_20, TEST50_50, Y$, DURATION, and ID. These variables are not useful in the analysis.

10 12) Click the Testing tab: Typically, you would randomly partition the data into 80% to build the model and 20% to test the model. However, because we are using time-ordered data where many of the variables may be affected by time, you must use the first 80% of records to build the model and the last 20% to test. To do this, choose the TEST80_20 variable under Variable separates learn, test. This variable simply holds a value of 0 for the first 80% of records and a value of 1 for the remaining 20%.

11 13) Click the TreeNet tab: This tab holds the internal TreeNet controls, such as number of trees to build and how fast the trees learn from the data. The defaults are usually a good place to start and can be tweaked after you analyze the model. 14) Change the Optimal Logistic Model Selection Criterion to ROC area, but leave everything else as is. 15) Click Start.

12 The TreeNet Output window, pictured below, will appear once the model is built: The Output window shows a graph of the number of trees in the ensemble with its corresponding ROC value. The vertical green bar denotes the model with the optimal ROC: 9 trees at An ROC of 0.50 equates to random guessing so you ve extracted a good amount of information with this model. Typically, a TreeNet ensemble has more trees, but the engine only required 9 trees and including more would push into overfitting. 16) At the bottom of the Output window, click the Summary button:

13 The Summary Results window will appear with tabs on numerous details about the selected model: Again, you can see the ROC on the test data is Other reported performance measures include Lift and Misclassification Rate. 17) Click the Variable Importance tab:

14 This tab is a quick way to see which variables are the most important in predicting whether or not a potential client will subscribe to the bank s investment. Keep in mind, this model is completely up to you; if MONTH$ isn t an ideal predictor for learning about your potential customers, remove this variable and re-run the model. 18) Click the Prediction Success tab: The Prediction Success table lets you know how accurate your model was able to predict in each class. For example, this TreeNet model correctly predicted non-subscribers 95% of the time and subscribers 13% of the time. Ideally, you would like a higher accuracy in predicting subscribers; this is something you will keep in mind as you continue building the models in this tutorial. 19) Return to the Output window and click Create Plots:

15 The Create Plots dialog box will appear: 20) Check the box next to One variable dependence and Select All variables. Click Create Plots.

16 21) In the resulting window, click Show All to display the plots:

17 A partial dependency plot for each important predictor will be created:

18 Scroll through to see which values of the important variables affect the subscription the most. For example, prospects with a basic 4-year education or a university degree are more likely to subscribe. Using TreeNet for targeted marketing has improved random calling and given you an idea of how the predictors affect subscription. Next, you will see how a MARS model improves the performance of targeted customers while delivering output in a standard regression equation. 22) Re-open the Model Setup window : 23) Change the Analysis Method to MARS. Even though MARS is traditionally a non-linear regression engine, it can also be used for logistic binary cases such as this one. Check that the variables are still correctly selected from the previous run.

19 24) Click the Testing tab: To compare directly with the TreeNet model, keep the same testing method as Variable separates learn, test and select TEST80_20.

20 25) Click the Options and Limits tab: 26) Change the number of maximum basis functions to 60. This allows for more transformations in the predictors. 27) Click Start.

21 This output window shows you the number of basis functions in the model against the performance of the model. Because MARS is a regression engine, the MSE and R-squared values will still be reported, but can be ignored here. 28) Instead, open the Summary window to see the ROC performance: This model improved in targeting customers, with an ROC of 0.72.

22 29) Click the Variable Importance tab: The predictors have been used differently in building this model, so the importances have changed. 30) Click the Basis Functions tab: Here is where the logistic regression equation is laid out in terms of the basis functions (transformations of the predictors). Each basis function is described and the final model is listed at the bottom. This form of output is especially desired by those who are comfortable with standard regression.

23 31) Click the Prediction Success tab: With this MARS model, non-subscribers are correctly predicted 82% of the time and subscribers are correctly predicted 51% of the time. This is a more satisfactory result when considering which prospects you would like to reach. However, predicting subscribers around 50% of the time can be improved upon. You have now seen how MARS boosts performance and gives another option for viewing the model. Lastly, you will see how a Random Forests model gives an even better performance and shows us exactly who to call and what the cost/return will be.

24 32) Re-open the Model Setup window : 33) Switch the Analysis Method to RandomForests. Verify that classification Logistic Binary and the correct variables are still selected.

25 34) Click the Testing tab: By default, RandomForests uses out of bag data for testing. This is the records that are not sampled during the bootstrap process. However, we want to directly compare to our previous models and take the time-ordered records into account so you ll choose the same method.

26 35) Click the RandomForests tab: 36) For time-saving purposes, change the number of trees to build from 500 to 200. Additionally, change the number of predictors sampled to 5. As a rule of thumb, this number should roughly equal the square root of the number of predictors.

27 37) Click the Class Weights tab: We noticed from the MARS run that the model was doing a poor job of classifying subscriptions, which is the class of interest. For the RF model, we will tell the engine to upweight the smaller class (1) in an attempt to increase the prediction accuracy. The greater the class weight, the harder RF will work to classify that class correctly. The true class ratio is 1:8, but this may be too extreme so you will pick an intermediate ratio of 1:5. 38) Click Specify and change the class weight corresponding to class 1 to 5, as in the picture above. 39) Click Start.

28 The optimal model in an RF ensemble will always be the largest number of trees. 40) Open the Summary window: The RandomForests model achieved an ROC of 0.73 on the test sample.

29 41) Click the Variable Importance tab: Again, the variable importance scores have changed with the new model; many are hardly important at all. 42) Click the Prediction Success tab:

30 This table is where we see how well our model classified subscriptions under the new weighting scheme. In class 0, we have an accuracy of 57%. In class 1, we increased the accuracy to a satisfactory 80%. Other information in this table lets us know that this model resulted in calling only 54% of the total call list (8,484) while still reaching 80% of the subscribers. This could save the bank a substantial amount of money in telemarketing costs. Another interesting feature of the prediction success table is the ability to adjust the classification threshold. This allows the user to decide the optimal tradeoff between specificity and sensitivity. In this case, you would sacrifice accuracy in predicting subscribers in order to narrow down the telemarketer call list. 43) Use the up arrow to change the Threshold value to 0.370: This is just one example of adjusting the threshold. Now, the telemarketers are only calling half of the call list while still reaching 76% of subscribers. Once you are happy with a final model, you can score the model on a new data set. In this application, the bank would get a new list of potential customers, run the list of attributes through this model, and decide who to call based on likelihood of investing. 44) To run this process, return to the RF Output window and click Score:

31 A Score dialog box will appear: In a typical situation, you would select your new data file in the first field of this window. For illustration purposes, we will just generate predictions for the data set we have available (41,188 records) with our model. 45) Check the box next to Save Scores As and save the file as bank_scored.csv. Click Score.

32 The Score Results window will let you know how your model performed on the input data set. Overall, the ROC is Remember, this is much better than expected because we are scoring the data that was used to build the model. 46) Click the Prediction Success tab:

33 Here you can see the course of action for a much bigger list of prospects. If there were 41,188 new records, you would only call 24% of the full list to hopefully reach 70% of subscribers. 47) Open bank_scored.csv in Excel: The scored data file has a column for the predicted outcome of each potential client. This is the list you would use to let telemarketers know who to call.

34 You can also filter the predictions to only show contacts classified as subscribers: Conclusion TreeNet, MARS, and RandomForests are three different ways to improve a targeted marketing strategy. Each engine offers unique features to give insight to the problem at hand. Here, TreeNet grew a manageable ensemble that improved on the baseline model and provided partial dependency plots to determine predictor influence. MARS was able to further improve performance while delivering a traditional regression equation. Finally, RandomForests employed the power of class weights to give the best performance yet in correctly classifying subscribers. There are many more features in each engine that can optimize predictive accuracy; this simply serves as a quick example on a few ways to target market.

Salford Predictive Modeler. Powerful machine learning software for developing predictive, descriptive, and analytical models.

Salford Predictive Modeler. Powerful machine learning software for developing predictive, descriptive, and analytical models. Powerful machine learning software for developing predictive, descriptive, and analytical models. The Company Minitab helps companies and institutions to spot trends, solve problems and discover valuable

More information

Predicting Customer Purchase to Improve Bank Marketing Effectiveness

Predicting Customer Purchase to Improve Bank Marketing Effectiveness Business Analytics Using Data Mining (2017 Fall).Fianl Report Predicting Customer Purchase to Improve Bank Marketing Effectiveness Group 6 Sandy Wu Andy Hsu Wei-Zhu Chen Samantha Chien Instructor:Galit

More information

Runs of Homozygosity Analysis Tutorial

Runs of Homozygosity Analysis Tutorial Runs of Homozygosity Analysis Tutorial Release 8.7.0 Golden Helix, Inc. March 22, 2017 Contents 1. Overview of the Project 2 2. Identify Runs of Homozygosity 6 Illustrative Example...............................................

More information

Using SPSS for Linear Regression

Using SPSS for Linear Regression Using SPSS for Linear Regression This tutorial will show you how to use SPSS version 12.0 to perform linear regression. You will use SPSS to determine the linear regression equation. This tutorial assumes

More information

Credit Card Marketing Classification Trees

Credit Card Marketing Classification Trees Credit Card Marketing Classification Trees From Building Better Models With JMP Pro, Chapter 6, SAS Press (2015). Grayson, Gardner and Stephens. Used with permission. For additional information, see community.jmp.com/docs/doc-7562.

More information

Excel 2016: Charts - Full Page

Excel 2016: Charts - Full Page Excel 2016: Charts - Full Page gcflearnfree.org/excel2016/charts/1/ Introduction It can be difficult to interpret Excel workbooks that contain a lot of data. Charts allow you to illustrate your workbook

More information

Prepare QuickBooks Online for Job Costing

Prepare QuickBooks Online for Job Costing I m sure you re still hearing rumors that QuickBooks Online does not do job costing. This is simply not true. QuickBooks Online has been able to job costing for 1099 contractor costs and other expenses

More information

Office Virtual Training: Quarter-End Billing

Office Virtual Training: Quarter-End Billing Morningstar SM Office Virtual Training: Quarter-End Billing Overview - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 Reviewing the Billing Process...............................................

More information

Next, switch from your browser to the inflow Cloud for Windows app and log in.

Next, switch from your browser to the inflow Cloud for Windows app and log in. Table of Contents 1.0 First-time setup...3 2.0 How do I navigate around inflow Cloud?...6 2.1 The inflow Cloud Homepage...6 2.2 inflow Cloud list views...6 2.3 Action toolbar...8 3.0 Where do I enter my

More information

Getting Started with OptQuest

Getting Started with OptQuest Getting Started with OptQuest What OptQuest does Futura Apartments model example Portfolio Allocation model example Defining decision variables in Crystal Ball Running OptQuest Specifying decision variable

More information

quick start guide A quick start guide inflow support GET STARTED WITH INFLOW

quick start guide A quick start guide inflow support GET STARTED WITH INFLOW GET STARTED WITH INFLOW quick start guide Welcome to the inflow Community! This quick start guide includes all the important stuff to get you tracking your inventory before you know it! Just follow along

More information

FLEETMATE. Overview. Work Order Features. CUSTOMER GUIDE: Work Orders

FLEETMATE. Overview. Work Order Features. CUSTOMER GUIDE: Work Orders Overview FLEETMATE will enable you to record all maintenance and/or repair activities performed on a vehicle via a Work Order. Work orders can accommodate any number of individual Labor lines, and any

More information

SPSS Guide Page 1 of 13

SPSS Guide Page 1 of 13 SPSS Guide Page 1 of 13 A Guide to SPSS for Public Affairs Students This is intended as a handy how-to guide for most of what you might want to do in SPSS. First, here is what a typical data set might

More information

Weka Evaluation: Assessing the performance

Weka Evaluation: Assessing the performance Weka Evaluation: Assessing the performance Lab3 (in- class): 21 NOV 2016, 13:00-15:00, CHOMSKY ACKNOWLEDGEMENTS: INFORMATION, EXAMPLES AND TASKS IN THIS LAB COME FROM SEVERAL WEB SOURCES. Learning objectives

More information

LECTURE 17: MULTIVARIABLE REGRESSIONS I

LECTURE 17: MULTIVARIABLE REGRESSIONS I David Youngberg BSAD 210 Montgomery College LECTURE 17: MULTIVARIABLE REGRESSIONS I I. What Determines a House s Price? a. Open Data Set 6 to help us answer this question. You ll see pricing data for homes

More information

NetSuite Quick Reference Guide

NetSuite Quick Reference Guide NetSuite Quick Reference Guide (For help with any NS topics not found here, please visit Suite Answers: https://netsuite.custhelp.com/app/home) Entering Customer Information After conclusion of Sales Process

More information

Angus AnyWhere. Reports User Guide AUGUST 2012

Angus AnyWhere. Reports User Guide AUGUST 2012 Angus AnyWhere Reports User Guide AUGUST 2012 Table of Contents About Reports... 1 Generating a Report... 2 Exporting Reports... 4 Printing Reports... 5 Tenant Request... 6 Labor Utilization... 6 Lists...

More information

Morningstar Direct SM Scorecard

Morningstar Direct SM Scorecard Within the Performance Reporting functionality, use the Scorecard to assign weighting schemes to data points and create custom criteria based on those quantitative and qualitative factors to calculate

More information

Decor Fusion Inventory Handheld Gun Usage Guide Version Date [Publish Date]

Decor Fusion Inventory Handheld Gun Usage Guide Version Date [Publish Date] Decor Fusion Inventory Handheld Gun Usage Guide Version 1.2.8.41 Date [Publish Date] Revision 1.0.0.0 Revision Date 10/30/2018 Overview Details: The purpose of this document is to provide instructions

More information

Microsoft Office: Excel 2013

Microsoft Office: Excel 2013 Microsoft Office: Excel 2013 Intro to Charts University Information Technology Services Training, Outreach and Learning Technologies Copyright 2014 KSU Department of University Information Technology Services

More information

MetaNeural Manual. Dear Customer:

MetaNeural Manual. Dear Customer: MetaNeural Manual Dear Customer: This is a guideline of how to collect data to, train, test, and create the structure for your neural network brain to be used in the MetaNeural EA. As well as a description

More information

Accurate Campaign Targeting Using Classification Algorithms

Accurate Campaign Targeting Using Classification Algorithms Accurate Campaign Targeting Using Classification Algorithms Jieming Wei Sharon Zhang Introduction Many organizations prospect for loyal supporters and donors by sending direct mail appeals. This is an

More information

Lesson 12. Doing Payroll with QuickBooks

Lesson 12. Doing Payroll with QuickBooks QUICKBOOKS 2016 STUDENT GUIDE Lesson 12 Doing Payroll with QuickBooks Copyright Copyright 2016 Intuit, Inc. All rights reserved. Intuit, Inc. 5601 Headquarters Drive Plano, TX 75024 Trademarks 2016 Intuit

More information

Morningstar Direct SM Performance Reporting

Morningstar Direct SM Performance Reporting Performance Reporting is specifically designed to monitor the performance of investments organized into groupings based on your own custom classifications. You can assign benchmarks, define data, and perform

More information

QUICK REFERENCE GUIDE

QUICK REFERENCE GUIDE QUICK REFERENCE GUIDE Viewing and Searching for Strategic Sourcing Events Navigation: Main Menu > Manage Events and Place Bids > View Events and Place Bids Purpose: To view and search for strategic sourcing

More information

Tutorial #7: LC Segmentation with Ratings-based Conjoint Data

Tutorial #7: LC Segmentation with Ratings-based Conjoint Data Tutorial #7: LC Segmentation with Ratings-based Conjoint Data This tutorial shows how to use the Latent GOLD Choice program when the scale type of the dependent variable corresponds to a Rating as opposed

More information

Corrugated Compression Strength

Corrugated Compression Strength Corrugated Compression Strength Introduction The Strength Program allows you to evaluate the effects of a number of loading parameters and environmental conditions on the predicted individual case compression

More information

THE NORMAL CURVE AND SAMPLES:

THE NORMAL CURVE AND SAMPLES: -69- &KDSWHU THE NORMAL CURVE AND SAMPLES: SAMPLING DISTRIBUTIONS A picture of an ideal normal distribution is shown below. The horizontal axis is calibrated in z-scores in terms of standard deviation

More information

Introduction to Cognos Analytics and Report Navigation Training. IBM Cognos Analytics 11

Introduction to Cognos Analytics and Report Navigation Training. IBM Cognos Analytics 11 Introduction to Cognos Analytics and Report Navigation Training IBM Cognos Analytics 11 Applicable for former IBM Cognos 10 report users who access CBMS Cognos to run and view reports March 2018 This training

More information

Creating a Split-Plot Factorial Protocol

Creating a Split-Plot Factorial Protocol Creating a Split-Plot Factorial Protocol In this tutorial, we will demonstrate: how to set up a factorial protocol, fill in the treatments, and then view a Split-Plot trial to see how the treatments are

More information

Hyperion SALARY User s Manual

Hyperion SALARY User s Manual 1 Task List Guide CONTENTS GENERAL NOTES... 3 Forms... 3 Tasks and the Task List... 3 Home Departments versus Funding Departments... 3 Logging into Hyperion and setting user preferences... 4 Navigating

More information

Predictive Modeling Using SAS Visual Statistics: Beyond the Prediction

Predictive Modeling Using SAS Visual Statistics: Beyond the Prediction Paper SAS1774-2015 Predictive Modeling Using SAS Visual Statistics: Beyond the Prediction ABSTRACT Xiangxiang Meng, Wayne Thompson, and Jennifer Ames, SAS Institute Inc. Predictions, including regressions

More information

Ordering Online with youravon.com

Ordering Online with youravon.com Ordering Online with youravon.com The My Orders section of youravon.com is your dashboard for everything related to your Customer orders and your Orders submitted to AVON. Here, you can: Search Customers

More information

Student Initial NewHire or TNEWEH EPAF Example. This is used to hire a student who has never worked at Reed before.

Student Initial NewHire or TNEWEH EPAF Example. This is used to hire a student who has never worked at Reed before. Student Initial NewHire or TNEWEH EPAF Example This is used to hire a student who has never worked at Reed before. EPAF Menu Item in Banner Self Service /GPS 2 Select New EPAF to create (originate) a new

More information

CHAPTER 9 - POINT OF SALE

CHAPTER 9 - POINT OF SALE Chapter 9 Point Of Sale CHAPTER 9 - POINT OF SALE Your Campground Manager Astra Software has a built in Point Of Sale system For managing store inventory and sales of various products and services you

More information

Tutorial Segmentation and Classification

Tutorial Segmentation and Classification MARKETING ENGINEERING FOR EXCEL TUTORIAL VERSION v171025 Tutorial Segmentation and Classification Marketing Engineering for Excel is a Microsoft Excel add-in. The software runs from within Microsoft Excel

More information

Proteus MMX Enhancements (3.7)

Proteus MMX Enhancements (3.7) Proteus MMX Enhancements (3.7) Contents 1. Working Hours tab added in employee module... 2 Add Working Hours... 4 2. Labor Planner added in Personnel module... 5 3. Time Zone is removed from Users and

More information

The Dummy s Guide to Data Analysis Using SPSS

The Dummy s Guide to Data Analysis Using SPSS The Dummy s Guide to Data Analysis Using SPSS Univariate Statistics Scripps College Amy Gamble April, 2001 Amy Gamble 4/30/01 All Rights Rerserved Table of Contents PAGE Creating a Data File...3 1. Creating

More information

How to Effectively Build a Project Schedule in MS-Project

How to Effectively Build a Project Schedule in MS-Project Tactical Project Management Presents How to Effectively Build a Project Schedule in MS-Project Written By Andrew Makar, PMP Edited by Richard Weller, PMP Page 2 Page 3 1 The Tactical Approach Each year

More information

Advanced Cycle Counting. Release 9.0.2

Advanced Cycle Counting. Release 9.0.2 Advanced Cycle Counting Release 9.0.2 Disclaimer This document is for informational purposes only and is subject to change without notice. This document and its contents, including the viewpoints, dates

More information

Linear model to forecast sales from past data of Rossmann drug Store

Linear model to forecast sales from past data of Rossmann drug Store Abstract Linear model to forecast sales from past data of Rossmann drug Store Group id: G3 Recent years, the explosive growth in data results in the need to develop new tools to process data into knowledge

More information

SCENARIO: We are interested in studying the relationship between the amount of corruption in a country and the quality of their economy.

SCENARIO: We are interested in studying the relationship between the amount of corruption in a country and the quality of their economy. Introduction to SPSS Center for Teaching, Research and Learning Research Support Group American University, Washington, D.C. Hurst Hall 203 rsg@american.edu (202) 885-3862 This workshop is designed to

More information

Pinterest Ads Manager Guide

Pinterest Ads Manager Guide Pinterest Ads Manager Guide Create and manage ads using the Pinterest Ads Manager and see how your ads help your business grow. Promoted Pins are ads that you pay for so they can reach a specific audience

More information

Ask the Expert Model Selection Techniques in SAS Enterprise Guide and SAS Enterprise Miner

Ask the Expert Model Selection Techniques in SAS Enterprise Guide and SAS Enterprise Miner Ask the Expert Model Selection Techniques in SAS Enterprise Guide and SAS Enterprise Miner SAS Ask the Expert Model Selection Techniques in SAS Enterprise Guide and SAS Enterprise Miner Melodie Rush Principal

More information

Managerial Decision-Making Introduction To Using Excel In Forecasting

Managerial Decision-Making Introduction To Using Excel In Forecasting Managerial Decision-Making Introduction To Using Excel In May 28-31, 2012 Thomas H. Payne, Ph.D. Dunagan Chair of Excellence in Banking Chair, Department of Accounting, Finance, Economics and Political

More information

ALLDAY TIME SYSTEMS LTD. Allday Time Manager Lite User Guide

ALLDAY TIME SYSTEMS LTD. Allday Time Manager Lite User Guide Allday Time Manager Lite User Guide 1 Table of Contents Table of Contents... 2 Starting Allday Time Manager... 3 Logging In... 3 Adding a New Employee... 4 Viewing / Editing an Employees Record... 5 General

More information

Tutorial #3: Brand Pricing Experiment

Tutorial #3: Brand Pricing Experiment Tutorial #3: Brand Pricing Experiment A popular application of discrete choice modeling is to simulate how market share changes when the price of a brand changes and when the price of a competitive brand

More information

SPM 8.2. Salford Predictive Modeler

SPM 8.2. Salford Predictive Modeler SPM 8.2 Salford Predictive Modeler SPM 8.2 The SPM Salford Predictive Modeler software suite is a highly accurate and ultra-fast platform for developing predictive, descriptive, and analytical models from

More information

Applying Regression Techniques For Predictive Analytics Paviya George Chemparathy

Applying Regression Techniques For Predictive Analytics Paviya George Chemparathy Applying Regression Techniques For Predictive Analytics Paviya George Chemparathy AGENDA 1. Introduction 2. Use Cases 3. Popular Algorithms 4. Typical Approach 5. Case Study 2016 SAPIENT GLOBAL MARKETS

More information

Getting Started Tutorial

Getting Started Tutorial Getting Started Tutorial Welcome This tutorial will introduce you to the main functions of your MYOB accounting software. You can use this tutorial with the current versions of MYOB Accounting, MYOB Accounting

More information

Lead Scoring CRM Integration

Lead Scoring CRM Integration http://docs.oracle.com Lead Scoring CRM Integration Configuration Guide 2018 Oracle Corporation. All rights reserved 02-Mar-2018 Contents 1 Lead Scoring CRM Integration Setup 3 2 Creating two new internal

More information

How to view Results with. Proteomics Shared Resource

How to view Results with. Proteomics Shared Resource How to view Results with Scaffold 3.0 Proteomics Shared Resource An overview This document is intended to walk you through Scaffold version 3.0. This is an introductory guide that goes over the basics

More information

A. Locating the Job Requisition:

A. Locating the Job Requisition: Keep in Mind Hiring managers are assigned the role of recruiting screener in Workday, which allows access to review all applicant information. If you do not have access for the job(s) you re hiring for

More information

REPORTING ON HISTORICAL CHANGES IN YOUR DATA

REPORTING ON HISTORICAL CHANGES IN YOUR DATA REPORTING ON HISTORICAL CHANGES IN YOUR DATA Summary Get deeper insight and make data-driven decisions by analyzing your organization's activity over over the last three months. Report on Historical Changes

More information

Attendance Enterprise Manager Self Service

Attendance Enterprise Manager Self Service Attendance Enterprise Manager Self Service Attendance Enterprise Manager Self Service A Companion Document to Attendance Enterprise 1.6 2011, InfoTronics, Inc. All Rights Reserved. InfoTronics, Attendance,

More information

OPEN ENROLLMENT. Employee Benefits

OPEN ENROLLMENT. Employee Benefits OPEN ENROLLMENT Employee Benefits Abstract Through the use of the Employee Self Service and Human Resource modules, you will be able to setup self-enrollment for your employees and let them do all the

More information

Internet Bill Pay Quick Reference Guide

Internet Bill Pay Quick Reference Guide Internet Bill Pay Quick Reference Guide Table of Contents Introduction: What is Internet Bill Pay? 2 How to Make a Payment Single Payment 3 Recurring Payment 4 Payment History Prior to X Date View Payment

More information

Copyright Wolf Track Software

Copyright Wolf Track Software Copyright 2009. Wolf Track Software No part of this publication may be reproduced in any form, by Photostat, Microfilm, xerography, or any other means, which are now known, or to be invented, or incorporated

More information

User Quickstart Guide

User Quickstart Guide User Quickstart Guide November 2015 Page 2 The Two Minute Overview Campus User Quick Start Guide for VeriTime provides a full picture time and attendance by placing absences captured in Aesop alongside

More information

Gush vs. Bore: A Look at the Statistics of Sampling

Gush vs. Bore: A Look at the Statistics of Sampling Gush vs. Bore: A Look at the Statistics of Sampling Open the Fathom file Random_Samples.ftm. Imagine that in a nation somewhere nearby, a presidential election will soon be held with two candidates named

More information

Best Practices for PPC on Google AdWords

Best Practices for PPC on Google AdWords Best Practices for PPC on Google AdWords Your digital advertising efforts require extensive knowledge about how to handle paid search campaigns on Google AdWords and other similar networks. When you aren

More information

Daily Operations Guide

Daily Operations Guide Daily Operations Guide Detailed Overview of The Reports in The Envision Software I Day-to-Day Operations Guide Table of Contents Part I Welcome to Envision Cloud 1 Part II Daily Operations 2 1 Clocking

More information

ROCS GUIDE TO INITIATOR/AUTHORIZER 1 ROLE I. INTRODUCTION TO THE INITIATOR/AUTHORIZER 1 ROLE

ROCS GUIDE TO INITIATOR/AUTHORIZER 1 ROLE I. INTRODUCTION TO THE INITIATOR/AUTHORIZER 1 ROLE ROCS GUIDE TO INITIATOR/AUTHORIZER 1 ROLE I. INTRODUCTION TO THE INITIATOR/AUTHORIZER 1 ROLE In ROCS Initiators and Authorizer 01 s may: start new position description requests, modify position description

More information

DRM DISPATCHER USER MANUAL

DRM DISPATCHER USER MANUAL DRM DISPATCHER USER MANUAL Overview: DRM Dispatcher provides support for creating and managing service appointments. This document describes the DRM Dispatcher Dashboard and how to use it to manage your

More information

Team Management Systems ACOWIN Report Manual Revision 12.08

Team Management Systems ACOWIN Report Manual Revision 12.08 Team Management Systems ACOWIN Report Manual Revision 12.08 Accounts Receivable Reports... 4 Call Slip Edit Report... 5 Call Slip Edit Report Reprint... 6 Call Slip Posting Report by Batch... 7 Call Slip

More information

Processing E-Verify without Task Management

Processing E-Verify without Task Management 1 E-Verify Overview E-Verify Overview Once you ve decided an applicant will be a great fit for your company, we can help with the rest! Confirming their federal work status is fast and easy with Paycom

More information

Supervisor Overview for Staffing and Scheduling Log In and Home Screen

Supervisor Overview for Staffing and Scheduling Log In and Home Screen Supervisor Overview for Staffing and Scheduling Log In and Home Screen On the login screen, enter your Active Directory User Name and Password, and click the Sign-in button. You will then be taken to your

More information

QUICKBOOKS 2018 STUDENT GUIDE. Lesson 3. Working with Lists

QUICKBOOKS 2018 STUDENT GUIDE. Lesson 3. Working with Lists QUICKBOOKS 2018 STUDENT GUIDE Lesson 3 Working with Lists Copyright Copyright 2018 Intuit, Inc. All rights reserved. Intuit, Inc. 5100 Spectrum Way Mississauga, ON. L4W 5S2 Trademarks 2018 Intuit Inc.

More information

GETTING STARTED WITH QUICKEN 2014 Windows Express Web Connect and Web Connect

GETTING STARTED WITH QUICKEN 2014 Windows Express Web Connect and Web Connect GETTING STARTED WITH QUICKEN 2014 Windows Express Web Connect and Web Connect Refer to this guide for instructions on how to use Quicken s online account services to save time and automatically keep your

More information

Lesson 3 Working with Lists

Lesson 3 Working with Lists Q U IC K BOOKS 2017 STUDEN T GUIDE Lesson 3 Working with Lists Copyright Copyright 2017 Intuit, Inc. All rights reserved. Intuit, Inc. 5100 Spectrum Way Mississauga, ON. L4W 5S2 Trademarks 2017 Intuit

More information

Short Tutorial for OROS Quick

Short Tutorial for OROS Quick Short Tutorial for OROS Quick Adapted by Ed Blocher from the Oros ABC/M Tutorial, SAS Institute, 2001, for use with the text and cases for Cost Management: A Strategic Emphasis, by Blocher, Stout, Cokins,

More information

CCI Online Management System (OMS) Documentation Section: HR

CCI Online Management System (OMS) Documentation Section: HR CCI Online Management System (OMS) Documentation Section: HR 1.1.Getting Started...2 1.2.Adding a New Employee...2 1.3.Editing & Submitting Employees...5 1.3.1 Editing Employee Information...7 7 1.3.2

More information

Setting Up a Multiplex (two probe) Real Time 5 Nuclease Reaction on the ABI PRISM 7700 Sequence Detection System

Setting Up a Multiplex (two probe) Real Time 5 Nuclease Reaction on the ABI PRISM 7700 Sequence Detection System Setting Up a Multiplex (two probe) Real Time 5 Nuclease Reaction on the ABI PRISM 7700 Sequence Detection System Overview The goal of this tutorial is to demonstrate how to correctly label a plate set-up

More information

Homework 1: Basic modeling, analysis and spreadsheet engineering

Homework 1: Basic modeling, analysis and spreadsheet engineering Homework 1: Basic modeling, analysis and spreadsheet engineering This first assignment is designed to give you a chance to build some relatively simple spreadsheet based models. Use good spreadsheet model

More information

DIGITAL VERSION. Microsoft EXCEL Level 2 TRAINER APPROVED

DIGITAL VERSION. Microsoft EXCEL Level 2 TRAINER APPROVED DIGITAL VERSION Microsoft EXCEL 2013 Level 2 TRAINER APPROVED Module 4 Displaying Data Graphically Module Objectives Creating Charts and Graphs Modifying and Formatting Charts Advanced Charting Features

More information

WMS 9.0 Tutorial GSSHA Applications Simulating Constituent Transport Model constituent transport in GSSHA

WMS 9.0 Tutorial GSSHA Applications Simulating Constituent Transport Model constituent transport in GSSHA v. 9.0 WMS 9.0 Tutorial GSSHA Applications Simulating Constituent Transport Model constituent transport in GSSHA Objectives Develop input parameters for and run a long-term model that simulates constituent

More information

Microsoft Office Project 2010 Basic Course 01: Getting Started

Microsoft Office Project 2010 Basic Course 01: Getting Started Microsoft Office Project 2010 Basic Course 01: Getting Started Slide 1 Topic A Project Management Concepts Slide 2 Project Constraints Slide 3 Phases of Project Management The initial Phase Initiating

More information

Bricks'n'Tiles. Easy Creation of Architectural Textures Tutorial Creating a seamless brick texture

Bricks'n'Tiles. Easy Creation of Architectural Textures   Tutorial Creating a seamless brick texture Bricks'n'Tiles Easy Creation of Architectural Textures www.bricksntiles.com Tutorial Creating a seamless brick texture Creating a seamless brick texture Welcome this this Bricks'n'Tiles Tutorial. Brick'n'Tiles

More information

Who Are My Best Customers?

Who Are My Best Customers? Technical report Who Are My Best Customers? Using SPSS to get greater value from your customer database Table of contents Introduction..............................................................2 Exploring

More information

DCC Kronos PC Users Handbook

DCC Kronos PC Users Handbook Logging in You can log into Kronos through MYDCC. Select the Working @ DCC tab and then click on the Kronos link located in the upper left hand corner of the screen. If you use the MYDCC portal, you will

More information

EffTox Users Guide and Tutorial (version 2.9)

EffTox Users Guide and Tutorial (version 2.9) EffTox Users Guide and Tutorial (version 2.9) Introduction This program is a (beta) implementation of the dose-finding method described in "Dose- Finding Based on Efficacy-Toxicity Trade-Offs" by Peter

More information

Chapter 1: Payroll Categories Overview 516. Chapter 2: Creating payroll categories 522. Chapter 3: Changing payroll categories 527

Chapter 1: Payroll Categories Overview 516. Chapter 2: Creating payroll categories 522. Chapter 3: Changing payroll categories 527 Table of Contents Chapter 1: Payroll Categories Overview 516 Creating payroll categories 516 Changing payroll categories 519 Removing payroll categories 520 Chapter 2: Creating payroll categories 522 To

More information

Introduction to IBM Cognos for Consumers. IBM Cognos

Introduction to IBM Cognos for Consumers. IBM Cognos Introduction to IBM Cognos for Consumers IBM Cognos June 2015 This training documentation is the sole property of EKS&H. All rights are reserved. No part of this document may be reproduced. Exception:

More information

myhr Oracle Human Capital Management

myhr Oracle Human Capital Management Facilitator s Guide myhr Oracle Human Capital Management Employee Self-Service (About Me - Personal Information) In Association with: How To Use This Guide This guide provides step-by-step instructions

More information

Lesson 3 Working with Lists

Lesson 3 Working with Lists Q U IC K BOOKS 2017 STUDEN T GUIDE Lesson 3 Working with Lists Copyright Copyright 2017 Intuit, Inc. All rights reserved. Intuit, Inc. 5100 Spectrum Way Mississauga, ON. L4W 5S2 Trademarks 2017 Intuit

More information

PeopleAdmin Navigation Reference Guide

PeopleAdmin Navigation Reference Guide PeopleAdmin Navigation Reference Guide PeopleAdmin Navigation Reference Guide Table of Contents General System Information... 2 System Roles... 3 Non-HR System Roles... 3 How to log-in to PeopleAdmin (PA7)...

More information

Customizing the Gantt chart View

Customizing the Gantt chart View In this lab, you will learn how to: Customize a Gantt chart view. LAB # 9 Formatting and Sharing Your Plan Customizing the Gantt chart View The Gantt chart became a standard way of visualizing project

More information

SPSS 14: quick guide

SPSS 14: quick guide SPSS 14: quick guide Edition 2, November 2007 If you would like this document in an alternative format please ask staff for help. On request we can provide documents with a different size and style of

More information

[Type the document title]

[Type the document title] EFFECTIVE PREMIUM - CUSTOMER TARGETING USING CLASSIFICATION METHODS - Increase number of purchases of high margin products using classification methods [Type the document title] [Type the document subtitle]

More information

QuickBooks Best Practices for Law Firms

QuickBooks Best Practices for Law Firms Opening Separate Bank Accounts Reconciling accounts and preparing for tax time is much easier if you separate personal from business bank accounts. Same goes for credit card and line-of-credit accounts.

More information

Payroll Processing User Guide. isolved. Payroll Processing Guide

Payroll Processing User Guide. isolved. Payroll Processing Guide isolved Payroll Processing Guide Table of Contents My Payroll Processing Calendar... 2 Next Scheduled Payroll... 2 Client Run Schedule... 3 Payroll Entry Setup... 4 Time Entry Templates... 4 Client Time

More information

CUSTOMER Q&A AT SUMMIT RACING EQUIPMENT

CUSTOMER Q&A AT SUMMIT RACING EQUIPMENT CUSTOMER Q&A AT SUMMIT RACING EQUIPMENT Vendor User Guide Providing the right answer, at the right time, for the benefit of our customers. Contents Purpose of Summit Racing Q&A... 2 Who is Bazaarvoice?...

More information

Transactional Reporting Guide

Transactional Reporting Guide Transactional Reporting Guide WestBred Winter and Spring Wheat2016 BROUGHT TO YOU BY: Table of Contents Transactional Reporting Guide Winter and Spring Wheat Page Introduction... 3 Before You Begin...

More information

Chapter 10 Regression Analysis

Chapter 10 Regression Analysis Chapter 10 Regression Analysis Goal: To become familiar with how to use Excel 2007/2010 for Correlation and Regression. Instructions: You will be using CORREL, FORECAST and Regression. CORREL and FORECAST

More information

Tutorial Formulating Models of Simple Systems Using VENSIM PLE System Dynamics Group MIT Sloan School of Management Cambridge, MA O2142

Tutorial Formulating Models of Simple Systems Using VENSIM PLE System Dynamics Group MIT Sloan School of Management Cambridge, MA O2142 Tutorial Formulating Models of Simple Systems Using VENSIM PLE System Dynamics Group MIT Sloan School of Management Cambridge, MA O2142 Originally prepared by Nelson Repenning. Vensim PLE 5.2a Last Revision:

More information

Completing an Internal Audit User Guide For the Reliance Assessment Database

Completing an Internal Audit User Guide For the Reliance Assessment Database Completing an Internal Audit User Guide For the Reliance Assessment Database Contents Logging into Reliance... 2 Creating an Audit Plan: Planning Your Internal Audit... 4 Approving an Audit Plan... 20

More information

Process Mining Tutorial

Process Mining Tutorial Process Mining Tutorial Copyright 2013 Fluxicon Goals of this tutorial Understand phases of process mining analysis Be able to get started and play around with your own data Outline 1. Example Scenario

More information

Module 4 Importing Your Product & Customer Information - Classes

Module 4 Importing Your Product & Customer Information - Classes Module 4 Importing Your Product & Customer Information - Classes Now that we have created our Import Lists, it is time to import them. This is a process that is going to save you a ton of time and must

More information

The SPSS Sample Problem To demonstrate these concepts, we will work the sample problem for logistic regression in SPSS Professional Statistics 7.5, pa

The SPSS Sample Problem To demonstrate these concepts, we will work the sample problem for logistic regression in SPSS Professional Statistics 7.5, pa The SPSS Sample Problem To demonstrate these concepts, we will work the sample problem for logistic regression in SPSS Professional Statistics 7.5, pages 37-64. The description of the problem can be found

More information

Tutorial Segmentation and Classification

Tutorial Segmentation and Classification MARKETING ENGINEERING FOR EXCEL TUTORIAL VERSION 1.0.10 Tutorial Segmentation and Classification Marketing Engineering for Excel is a Microsoft Excel add-in. The software runs from within Microsoft Excel

More information