Software Course and the Case Practice Introduction of Credit Risk Data

Size: px
Start display at page:

Download "Software Course and the Case Practice Introduction of Credit Risk Data"

Transcription

1 Software Course and the Case Practice Introduction of Credit Risk Data Cheyu HUNG / 洪哲裕 StatSoft Holdings, Inc., Taiwan Branch November 27, 2013 Making the World More Productive Headquarters: StatSoft, Inc East 14th Street Tulsa, OK USA +1(918) info@statsoft.com Australia: StatSoft Pacific Pty Ltd. Brazil: StatSoft South America Ltda. Bulgaria: StatSoft Bulgaria Ltd. Chile: StatSoft South America Ltda. China: StatSoft China Czech Rep.: StatSoft Czech Rep. s.r.o. France: StatSoft France Germany: StatSoft GmbH Hungary: StatSoft Hungary Ltd. India: StatSoft India Pvt. Ltd. Israel: StatSoft Israel Ltd. Italy: StatSoft Italia srl Japan: StatSoft Japan Inc. Korea: StatSoft South Korea Netherlands: StatSoft Benelux Norway: StatSoft Norway AS Poland: StatSoft Polska Sp. z o.o. Portugal: StatSoft Iberica Lda Russia: StatSoft Russia S. Africa: StatSoft S. Africa (Pty) Ltd. Spain: StatSoft Iberica Lda Sweden: StatSoft Scandinavia AB Taiwan: StatSoft Taiwan UAE/Egypt: StatSoft Middle East United Kingdom: StatSoft Ltd. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc.

2 Credit Risk Data The application for this data Variables in the Credit Risk data Next steps for the Data Mining project Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 1

3 Applications Practically all data need some preparation work. Handling missing data and outliers. Selecting important variables. Sampling Classification tasks have many uses Classify a variable with 2 or more groups Find probability of a predicted classification Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 2

4 Application for Credit Risk Data A financial institution needs a way to decide if and how much credit to extend to customers who apply. This is our business need Automated Neural Networks The goals of the data mining project include: Determining the variables that are best predictors of credit risk, Finding a high performance predictive model that classifies customers, Deploying that model to make decisions on credit application, Updating the model as we collect more data. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 3

5 Next Steps for the Data Mining Project The project goals are expressed and data are available. The next step is to understand the data. We will do this by reviewing the data graphically. Later the data needs prepared using data cleaning tools. From there, we move to modeling, evaluation and deployment. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 4

6 Introduction to Credit Risk Data In this session, we discussed the business need and application for the data. We reviewed the variables We outlined the next steps for the data mining project. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 5

7 Next Steps With an understanding of the application, we are ready to start working with the data. The next session will look at query and import options to bring the data into STATISTICA from a database or external format. From there, we will start graphical review and data cleaning. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 6

8 Initial Graphical Review Review the data graphically to reveal issues with the data that will need addressed in the data cleaning phase. Explore tools to mark or remove invalid points. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 7

9 Data Cleaning for Outliers Detecting outliers Graphically Statistical tests Handling outliers What caused the outlier? What can be done to clean the data? Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 8

10 Detecting Outliers Graphically A box plot can show outliers in continuous data. A histogram can show outliers in categorical data. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 9

11 Detecting Outliers with Statistical Tests Grubbs test Normal distribution Percentiles Tukey Descriptive Statistics Grubbs Test p-value Variable Statistic Age Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 10

12 Remove the outliers Handling Outliers Are the outliers data entry errors? Are the outliers due to entries in the data set that don t belong there? Keep the outliers Are the outliers legitimate points that simply have extreme values? Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 11

13 C&RT for Classification What is C&RT Misclassification cost Stopping conditions Cross Validation Surrogates Suppose these terms above are known and learned Example in STATISTICA Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 12

14 C&RT Classification and Regression Trees A nonparametric data mining algorithm for generating decision trees. Splits are made by variables that best differentiate the target variable. Each node can be split into two child nodes Stopping rules govern the size of the tree. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 13

15 Misclassification cost Misclassification is inevitable since no model is perfect. Some misclassifications are worse than others, so STATISTICA allows you to account for this with misclassification costs. Observed Good Credit Observed Bad Credit Predicted Good Credit Correct % X margin lost (by unit) Incorrect % X margin lost (by unit) Predicted Bad Credit Incorrect % X margin lost (by unit) Correct % X margin lost (by unit) Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 14

16 Stopping Conditions Variety, but choose one is enough Decision Tree Pruning Misclassification error or Deviance Select a minimum number of cases for a node to be considered for splitting. Select a maximum number of total nodes. FACT direct stopping Select the fraction of objects for determining if a node should be split. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 15

17 Cross Validation Cross Validation is a method to prevent over fitting the data and failing to generalize to new data. V-Fold Cross Validation Good for smaller data sets, when holding out a test sample is not feasible. Repeats the analysis on V different random samples taken from the data and compares the resulting trees. Train Test Sample Cross Validation Test sample data is used to determine if the right size tree was found based on how well the tree performs on the test data. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 16

18 Surrogates In deployment stage, surrogate splits are used in place of the actual split variable when its value is missing. The surrogate is the next best split variable. Each split can have multiple surrogates Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 17

19 CHAID Trees What is CHAID Analysis options Exhaustive CHAID Example in STATISTICA Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 18

20 CHAID Chi Square Automatic Interaction Detection Performs multi-level splits where C&RT uses binary splits. Well suited for large data sets. Commonly used for marketing segmentation studies. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 19

21 CHAID Analysis Options ANOVA type design Misclassification costs Cross Validation Bonferroni adjustment Risk estimate s (credit scoring for model bu Dependent variable: Credit Rating Options: Cate gorical response Risk estimate Standard error Train Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 20

22 CHAID Analysis Options Stopping parameters Minimum cases for a node to be split Maximum number of total nodes Probability for merging and splitting Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 21

23 Exhaustive CHAID Optional to proceed or NOT More computationally intensive, for large data sets may require extended computations. Performs more thorough merging and testing of predictor variables to find the best split candidate. Typically produces better performing classification trees. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 22

24 Boosted Trees What are boosted trees? Analysis options Stopping parameters Examples in STATISTICA Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 23

25 Boosted Trees The idea of Boosted trees is to build a sequence of simple trees, weighting them inversely by misclassification. The final classification for deployment is based on voting from these simple trees. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 24

26 Boosted Trees Analysis Options Learning Rate Number of additive terms Random test data proportions Subsample proportions Seed for random number generator Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 25

27 Boosted Trees Stopping Parameters Minimum number of cases Maximum number of levels Minimum number in child nodes Maximum number of nodes Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 26

28 Random Forests For Classification What is Random Forests classification? Analysis options Example in STATISTICA Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 27

29 Random Forests Random Forests builds a series of trees. Each tree predicts a classification. The Random Forest predicts the classification predicted by the most trees. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 28

30 Random Forest Analysis Options Number of predictors - optimal setting is log2(m+1) Number of trees Sampling proportions Stopping parameters Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 29

31 Comparing Performance across Models Generating deployment code Rapid Deployment results Lift and Gains Charts Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 30

32 Generating Deployment Code Optional topic Many Data Mining and Statistics tools in STATISTICA have the ability to generate deployment code. STATISTICA Visual Basic C/C++ language PMML Script Deployment to STATISTICA Enterprise Save PMML deployment code as.xml Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 31

33 Rapid Deployment Optional topic Load multiple data mining models Make predictions on new data Generate lift and gains charts comparing models Write predictions back to data file Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 32

34 Lift and Gains Charts Optional topic Lift chart Shows the effectiveness of the model compared to no model. Gains chart Shows the percentage of observations correctly classified for the given category, in this case, bad. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 33

35 Voting Across Models What is voting or bagging? Instability or results in small datasets Reviewing results C&RT Input Data CHAID Random Forest Vote Final Prediction Boosted Trees Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 34

36 What is Voting or Bagging? Data Mining offers a variety of model building tools, so a large number of models can be created in a given project. None of these models will fully capture the underlying relationship of the data. Using an ensemble of models together to determine the final prediction is called voting or bagging. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 35

37 What is Voting What or Bagging? is Voting or Bagging? C&RT CHAID Input Data Random Forest Vote Final Prediction Boosted Trees Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 36

38 Instability of Results in Small Data Sets Data Mining can model complex relationships between variables. Without ample data, instability can be an issue. Using multiple models with voting combats the problem of instability in results. The ensemble of models typically outperforms individuals. Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 37

39 Rapid Deployment gives predictions based on voting. That output can generate other results. Summary of Deployment (Error rates) (CreditScoring) BoostTreeModel ExhaustiveCHAIDMo RandomForestMode TreeModel VotedModel del Error rate Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 38

40 Q/A Welcome to mail us! Copyright StatSoft, Inc., StatSoft, StatSoft logo, and STATISTICA are trademarks of StatSoft, Inc. 39

R-Related Features and Integration in STATISTICA

R-Related Features and Integration in STATISTICA R-Related Features and Integration in STATISTICA Run native R programs from inside STATISTICA Enhance STATISTICA with unique R capabilities Enhance R with unique STATISTICA capabilities Create and support

More information

Using Data Mining Methods to Optimize Boiler Performance: Successes and Lessons Learned

Using Data Mining Methods to Optimize Boiler Performance: Successes and Lessons Learned Using Data Mining Methods to Optimize Boiler Performance: Successes and Lessons Learned Thomas Hill, Ph.D. StatSoft Power Solutions StatSoft Inc. www.statsoft.com www.statsoftpower.com Optimize combustion,

More information

A Short Course in Data Mining

A Short Course in Data Mining A Short Course in Data Mining data analysis data mining quality control web-based analytics U.S. Headquarters: StatSoft, Inc. 2300 E. 14th St. Tulsa, OK 74104 USA (918) 749-1119 Fax: (918) 749-2217 info@statsoft.com

More information

STATISTICA. Financial Institutions. Case Study: Credit Scoring. and

STATISTICA. Financial Institutions. Case Study: Credit Scoring. and Financial Institutions and STATISTICA Case Study: Credit Scoring STATISTICA Solutions for Business Intelligence, Data Mining, Quality Control, and Web-based Analytics Table of Contents INTRODUCTION: WHAT

More information

How To Get A New Phone System For Your Business

How To Get A New Phone System For Your Business Cisco Phone Systems Telemarketing Script Cold Call 1. Locate Contact: Name listed Owner General Manager / Office Manager Chief BDM (Business Decision Maker) Note: Avoid talking to IT since this is not

More information

The Predictive Data Mining Revolution in Scorecards:

The Predictive Data Mining Revolution in Scorecards: January 13, 2013 StatSoft White Paper The Predictive Data Mining Revolution in Scorecards: Accurate Risk Scoring via Ensemble Models Summary Predictive modeling methods, based on machine learning algorithms

More information

Gerry Hobbs, Department of Statistics, West Virginia University

Gerry Hobbs, Department of Statistics, West Virginia University Decision Trees as a Predictive Modeling Method Gerry Hobbs, Department of Statistics, West Virginia University Abstract Predictive modeling has become an important area of interest in tasks such as credit

More information

EXPLORING & MODELING USING INTERACTIVE DECISION TREES IN SAS ENTERPRISE MINER. Copyr i g ht 2013, SAS Ins titut e Inc. All rights res er ve d.

EXPLORING & MODELING USING INTERACTIVE DECISION TREES IN SAS ENTERPRISE MINER. Copyr i g ht 2013, SAS Ins titut e Inc. All rights res er ve d. EXPLORING & MODELING USING INTERACTIVE DECISION TREES IN SAS ENTERPRISE MINER ANALYTICS LIFECYCLE Evaluate & Monitor Model Formulate Problem Data Preparation Deploy Model Data Exploration Validate Models

More information

AnswerTree. Reveal segments. and predict how. groups will respond. to your promotions. and programs using. scalable decision trees

AnswerTree. Reveal segments. and predict how. groups will respond. to your promotions. and programs using. scalable decision trees AnswerTree Reveal segments and predict how groups will respond to your promotions and programs using scalable decision trees Better understand your customers How do you determine which customer, or citizen,

More information

Data Mining Techniques Chapter 6: Decision Trees

Data Mining Techniques Chapter 6: Decision Trees Data Mining Techniques Chapter 6: Decision Trees What is a classification decision tree?.......................................... 2 Visualizing decision trees...................................................

More information

Foreign Taxes Paid and Foreign Source Income INTECH Global Income Managed Volatility Fund

Foreign Taxes Paid and Foreign Source Income INTECH Global Income Managed Volatility Fund Income INTECH Global Income Managed Volatility Fund Australia 0.0066 0.0375 Austria 0.0045 0.0014 Belgium 0.0461 0.0138 Bermuda 0.0000 0.0059 Canada 0.0919 0.0275 Cayman Islands 0.0000 0.0044 China 0.0000

More information

E-Seminar. Financial Management Internet Business Solution Seminar

E-Seminar. Financial Management Internet Business Solution Seminar E-Seminar Financial Management Internet Business Solution Seminar Financial Management Internet Business Solution Seminar 3 Welcome 4 Objectives 5 Financial Management 6 Financial Management Defined 7

More information

BT Premium Event Call and Web Rate Card

BT Premium Event Call and Web Rate Card BT Managed Event and BT Self-Managed Event (also referred to as Express, Plus and Premium) Conference Bridge and Call for Booked Audio Conferencing Services will comprise the following for each phone-conference:

More information

An Overview and Evaluation of Decision Tree Methodology

An Overview and Evaluation of Decision Tree Methodology An Overview and Evaluation of Decision Tree Methodology ASA Quality and Productivity Conference Terri Moore Motorola Austin, TX terri.moore@motorola.com Carole Jesse Cargill, Inc. Wayzata, MN carole_jesse@cargill.com

More information

Knowledge Discovery and Data Mining. Bootstrap review. Bagging Important Concepts. Notes. Lecture 19 - Bagging. Tom Kelsey. Notes

Knowledge Discovery and Data Mining. Bootstrap review. Bagging Important Concepts. Notes. Lecture 19 - Bagging. Tom Kelsey. Notes Knowledge Discovery and Data Mining Lecture 19 - Bagging Tom Kelsey School of Computer Science University of St Andrews http://tom.host.cs.st-andrews.ac.uk twk@st-andrews.ac.uk Tom Kelsey ID5059-19-B &

More information

CISCO IP PHONE SERVICES SOFTWARE DEVELOPMENT KIT (SDK)

CISCO IP PHONE SERVICES SOFTWARE DEVELOPMENT KIT (SDK) DATA SHEET CISCO IP PHONE SERVICES SOFTWARE DEVELOPMENT KIT (SDK) Cisco Systems IP Phone Services bring the power of the World Wide Web to Cisco IP Phones. An integral part of a Cisco AVVID (Architecture

More information

How to Deploy Models using Statistica SVB Nodes

How to Deploy Models using Statistica SVB Nodes How to Deploy Models using Statistica SVB Nodes Abstract Dell Statistica is an analytics software package that offers data preparation, statistics, data mining and predictive analytics, machine learning,

More information

41 T Korea, Rep. 52.3. 42 T Netherlands 51.4. 43 T Japan 51.1. 44 E Bulgaria 51.1. 45 T Argentina 50.8. 46 T Czech Republic 50.4. 47 T Greece 50.

41 T Korea, Rep. 52.3. 42 T Netherlands 51.4. 43 T Japan 51.1. 44 E Bulgaria 51.1. 45 T Argentina 50.8. 46 T Czech Republic 50.4. 47 T Greece 50. Overall Results Climate Change Performance Index 2012 Table 1 Rank Country Score** Partial Score Tendency Trend Level Policy 1* Rank Country Score** Partial Score Tendency Trend Level Policy 21 - Egypt***

More information

AMDOCS INTERACTIVE CUSTOMER SUCCESS STORY HONG KONG CSL

AMDOCS INTERACTIVE CUSTOMER SUCCESS STORY HONG KONG CSL AMDOCS INTERACTIVE CUSTOMER SUCCESS STORY HONG KONG CSL At CSL, we have a commitment to deliver quality, innovative and relevant mobile data services to all of our 1010 and One2Free customers. The Interactive

More information

Customer Support. Superior Service Solutions for Your Laser and Laser Accessories. Superior Reliability & Performance

Customer Support. Superior Service Solutions for Your Laser and Laser Accessories. Superior Reliability & Performance Customer Support Superior Service Solutions for Your Laser and Laser Accessories Superior Reliability & Performance Optimizing Service Support for our Customers. Increased up-time Focus on core business

More information

Cisco Blended Agent: Bringing Call Blending Capability to Your Enterprise

Cisco Blended Agent: Bringing Call Blending Capability to Your Enterprise DATA SHEET Cisco Blended Agent: Bringing Call Blending Capability to Your Enterprise Cisco ICM software has traditionally enabled companies to distribute inbound service volume to a variety of termination

More information

Report on Government Information Requests

Report on Government Information Requests Report on Government Information July 1 - December 31, 2015 Apple takes our commitment to protecting your data very seriously and we work incredibly hard to deliver the most secure hardware, software and

More information

NetFlow Feature Acceleration

NetFlow Feature Acceleration WHITE PAPER NetFlow Feature Acceleration Feature Description Rapid growth in Internet and intranet deployment and usage has created a major shift in both corporate and consumer computing paradigms. This

More information

Building a Global Internet Company: Driving Traffic to Your Site. Benjamin Edelman Harvard Business School

Building a Global Internet Company: Driving Traffic to Your Site. Benjamin Edelman Harvard Business School Building a Global Internet Company: Driving Traffic to Your Site Benjamin Edelman Harvard Business School Mumbai, India January 20, 2012 About me Assistant Professor, Harvard Business School Teaching:

More information

Lawson Talent Management

Lawson Talent Management Lawson Talent Imagine Knowing: Which employees have the highest potential how to recruit more talent like them. Imagine Understanding: Which employees are a flight risk how your compensation plans could

More information

World Consumer Income and Expenditure Patterns

World Consumer Income and Expenditure Patterns World Consumer Income and Expenditure Patterns 2014 14th edi tion Euromonitor International Ltd. 60-61 Britton Street, EC1M 5UX TableTypeID: 30010; ITtableID: 22914 Income Algeria Income Algeria Income

More information

Your Partner in High Strength Steel

Your Partner in High Strength Steel Your Partner in High Strength Steel THE CHALLENGE THE CHALLENGE DEVELOPING A LIGHTER CAR IS EASY. DEVELOPING A SAFER AND STIFFER CAR IS EASY. BUT WHAT ABOUT DOING BOTH? IT S A CHALLENGE Today s automotive

More information

Knowledge Discovery and Data Mining

Knowledge Discovery and Data Mining Knowledge Discovery and Data Mining Unit # 11 Sajjad Haider Fall 2013 1 Supervised Learning Process Data Collection/Preparation Data Cleaning Discretization Supervised/Unuspervised Identification of right

More information

Cisco IOS Public-Key Infrastructure: Deployment Benefits and Features

Cisco IOS Public-Key Infrastructure: Deployment Benefits and Features Data Sheet Cisco IOS Public-Key Infrastructure: Deployment Benefits and Features Introduction to Public Key Infrastructure Public Key Infrastructure (PKI) offers a scalable method of securing networks,

More information

Report on Government Information Requests

Report on Government Information Requests Report on Government Information January 1 - June 30, 2015 Apple takes our commitment to protecting your data very seriously and we work incredibly hard to deliver the most secure hardware, software and

More information

GE Grid Solutions. Providing solutions that keep the world energized Press Conference Call Presentation November 12, 2015. Imagination at work.

GE Grid Solutions. Providing solutions that keep the world energized Press Conference Call Presentation November 12, 2015. Imagination at work. GE Grid Solutions Providing solutions that keep the world energized Press Conference Call Presentation November 12, 2015 Press Conference Call Recording: Toll Free: +1 (855) 859-2056 Toll: +1 (404) 537-3406

More information

T-MOBILE DEPLOYS INNOVATIVE TECHNOLOGIES AND REINFORCES MARKET LEADERSHIP WITH AMDOCS CHARGING SUPPORTING CUTTING-EDGE BILLING SERVICES

T-MOBILE DEPLOYS INNOVATIVE TECHNOLOGIES AND REINFORCES MARKET LEADERSHIP WITH AMDOCS CHARGING SUPPORTING CUTTING-EDGE BILLING SERVICES AMDOCS CUSTOMER success story T-MOBILE DEPLOYS INNOVATIVE TECHNOLOGIES AND REINFORCES MARKET LEADERSHIP WITH AMDOCS CHARGING SUPPORTING CUTTING-EDGE BILLING SERVICES By on-going adoption of the latest

More information

E-Seminar. E-Commerce Internet Business Solution Seminar

E-Seminar. E-Commerce Internet Business Solution Seminar E-Seminar E-Commerce Internet Business Solution Seminar E-Commerce Internet Business Solution Seminar 3 Welcome 4 Objectives 5 The Internet Revolution 6 E-Commerce Defined 7 Types of E-Commerce 8 E-Commerce

More information

Mobile Application Testing

Mobile Application Testing Mobile Application Testing Best Practices to Ensure Quality Written by Assaf Ben David, Senior Software Testing Consultant MOBILE APPLICATION TESTING 2 Mobile Application Testing Complexities The world

More information

CISCO METRO ETHERNET SERVICES AND SUPPORT

CISCO METRO ETHERNET SERVICES AND SUPPORT SERVICES OVERIVEW CISCO METRO ETHERNET SERVICES AND SUPPORT In the ever-changing communications market, incumbent service providers are looking for ways to grow revenue. One method is to deploy service

More information

OCTOBER 2010. Russell-Parametric Cross-Sectional Volatility (CrossVol ) Indexes Construction and Methodology

OCTOBER 2010. Russell-Parametric Cross-Sectional Volatility (CrossVol ) Indexes Construction and Methodology OCTOBER 2010 Russell-Parametric Cross-Sectional Volatility (CrossVol ) Indexes Construction and Methodology SEPTEMBER 2010 Russell-Parametric Cross-Sectional Volatility (CrossVol) Indexes Construction

More information

Benchmarking of different classes of models used for credit scoring

Benchmarking of different classes of models used for credit scoring Benchmarking of different classes of models used for credit scoring We use this competition as an opportunity to compare the performance of different classes of predictive models. In particular we want

More information

Product Summary. KLIMA 1 Catalogue KLIMA 2 Catalogue FILTER Catalogue. The art of handling air. Special leaflet SP/1/EN/7

Product Summary. KLIMA 1 Catalogue KLIMA 2 Catalogue FILTER Catalogue. The art of handling air. Special leaflet SP/1/EN/7 Product Summary KLIMA 1 Catalogue KLIMA 2 Catalogue FILTER Catalogue The art of handling air Special leaflet SP/1/EN/7 Components and systems for ventilation and air conditioning C As an internationally

More information

Report on Government Information Requests

Report on Government Information Requests Report on Government Information July 1 - December 31, 2014 apple Apple takes our commitment to protecting your data very seriously and we work incredibly hard to deliver the most secure hardware, software

More information

How many students study abroad and where do they go?

How many students study abroad and where do they go? From: Education at a Glance 2012 Highlights Access the complete publication at: http://dx.doi.org/10.1787/eag_highlights-2012-en How many students study abroad and where do they go? Please cite this chapter

More information

PM 2 GRUNDFOS INSTRUCTIONS

PM 2 GRUNDFOS INSTRUCTIONS PM GRUNDFOS INSTRUCTIS Max. m. (default) Max. t amb Min. 0 C P start =. bar (default) Max. 0 bar ( ) Min..9 bar (0.9 ) (default) bar Max. t liq Min. 0 C l / = max. 0 A 4 60 6 7 6. bar + 0.. bar + 0. =.

More information

CISCO NETWORK CONNECTIVITY CENTER

CISCO NETWORK CONNECTIVITY CENTER DATA SHEET CISCO NETWORK CONNECTIVITY CENTER The Cisco Network Connectivity Center (NCC) delivers end-to-end management across multiple tools, technologies, and silos. From networks and applications to

More information

METROLOGIC INSTRUMENTS, INC. MS1690 Focus Area Imaging Bar Code Scanner Supplemental Configuration Guide

METROLOGIC INSTRUMENTS, INC. MS1690 Focus Area Imaging Bar Code Scanner Supplemental Configuration Guide METROLOGIC INSTRUMENTS, INC. MS1690 Focus Area Imaging Bar Code Scanner Supplemental Configuration Guide Copyright 2005 by Metrologic Instruments, Inc. All rights reserved. No part of this work may be

More information

STATE OF GLOBAL E-COMMERCE REPORT (Preview) February 2013

STATE OF GLOBAL E-COMMERCE REPORT (Preview) February 2013 STATE OF GLOBAL E-COMMERCE REPORT (Preview) February 2013 THE E-COMMERCE REPORT WHAT IS THE E-COMMERCE REPORT? It is an annual investigation into the global uptake and impact of e- commerce. The report

More information

BROWN BROTHERS HARRIMAN (LUXEMBOURG) S.C.A. Wells Fargo (Lux) Worldwide Fund

BROWN BROTHERS HARRIMAN (LUXEMBOURG) S.C.A. Wells Fargo (Lux) Worldwide Fund Argen na CITIBANK, N.A. BUENOS AIRES BRANCH Australia Austria HSBC BANK AUSTRALIA LIMITED FOR THE HONGKONG AND SHANGHAI DEUTSCHE BANK AG, VIENNA BRANCH Belgium DEUTSCHE BANK AG, AMSTERDAM BRANCH Brazil

More information

Appendix 1: Full Country Rankings

Appendix 1: Full Country Rankings Appendix 1: Full Country Rankings Below please find the complete rankings of all 75 markets considered in the analysis. Rankings are broken into overall rankings and subsector rankings. Overall Renewable

More information

THE CISCO CRM COMMUNICATIONS CONNECTOR GIVES EMPLOYEES SECURE, RELIABLE, AND CONVENIENT ACCESS TO CUSTOMER INFORMATION

THE CISCO CRM COMMUNICATIONS CONNECTOR GIVES EMPLOYEES SECURE, RELIABLE, AND CONVENIENT ACCESS TO CUSTOMER INFORMATION CUSTOMER SUCCESS STORY THE CISCO CRM COMMUNICATIONS CONNECTOR GIVES EMPLOYEES SECURE, RELIABLE, AND CONVENIENT ACCESS TO CUSTOMER INFORMATION EXECUTIVE SUMMARY CUSTOMER NAME Coleman Technologies INDUSTRY

More information

Cisco 2-Port OC-3/STM-1 Packet-over-SONET Port Adapter

Cisco 2-Port OC-3/STM-1 Packet-over-SONET Port Adapter Data Sheet Cisco 2-Port OC-3/STM-1 Packet-over-SONET Port Adapter To meet the continual need for increased router features and performance, Cisco Systems introduces its newest packetover-sonet (POS) port

More information

IOOF QuantPlus. International Equities Portfolio NZD. Quarterly update

IOOF QuantPlus. International Equities Portfolio NZD. Quarterly update IOOF QuantPlus NZD Quarterly update For the period ended 31 March 2016 Contents Overview 2 Portfolio at glance 3 Performance 4 Asset allocation 6 Overview At IOOF, we have been helping Australians secure

More information

EXPANDING RELATIONSHIP WITH AMDOCS HELPS ADSA ENTER NEW MARKETS AND ENHANCE THE CUSTOMER EXPERIENCE FOR ADSA S PRINT AND ONLINE ADVERTISERS

EXPANDING RELATIONSHIP WITH AMDOCS HELPS ADSA ENTER NEW MARKETS AND ENHANCE THE CUSTOMER EXPERIENCE FOR ADSA S PRINT AND ONLINE ADVERTISERS AMDOCS CUSTOMER success story EXPANDING RELATIONSHIP WITH AMDOCS HELPS ADSA ENTER NEW MARKETS AND ENHANCE THE CUSTOMER EXPERIENCE FOR ADSA S PRINT AND ONLINE ADVERTISERS With the help of Amdocs evolving

More information

WebFOCUS RStat. RStat. Predict the Future and Make Effective Decisions Today. WebFOCUS RStat

WebFOCUS RStat. RStat. Predict the Future and Make Effective Decisions Today. WebFOCUS RStat Information Builders enables agile information solutions with business intelligence (BI) and integration technologies. WebFOCUS the most widely utilized business intelligence platform connects to any enterprise

More information

Accuracy counts! SENSORS WITH ANALOG OUTPUT

Accuracy counts! SENSORS WITH ANALOG OUTPUT Accuracy counts! SENSORS WITH ANALOG OUTPUT OTHER APPLICATIONS: KEY ADVANTAGES: Distance measurement Positioning Profile detection Deformation monitoring Vibration monitoring Process monitoring Detection

More information

Global Effective Tax Rates

Global Effective Tax Rates www.pwc.com/us/nes Global s Global s April 14, 2011 This document has been prepared pursuant to an engagement between PwC and its Client. As to all other parties, it is for general information purposes

More information

Using multiple models: Bagging, Boosting, Ensembles, Forests

Using multiple models: Bagging, Boosting, Ensembles, Forests Using multiple models: Bagging, Boosting, Ensembles, Forests Bagging Combining predictions from multiple models Different models obtained from bootstrap samples of training data Average predictions or

More information

NI USB-6008/6009 OEM USER GUIDE

NI USB-6008/6009 OEM USER GUIDE USER GUIDE NI USB-6008/6009 OEM This document provides information about the dimensions, connectors, and other components of the National Instruments USB-6008/6009 OEM device. For more information about

More information

MERCER S COMPENSATION ANALYSIS AND REVIEW SYSTEM AN ONLINE TOOL DESIGNED TO TAKE THE WORK OUT OF YOUR COMPENSATION REVIEW PROCESS

MERCER S COMPENSATION ANALYSIS AND REVIEW SYSTEM AN ONLINE TOOL DESIGNED TO TAKE THE WORK OUT OF YOUR COMPENSATION REVIEW PROCESS MERCER S COMPENSATION ANALYSIS AND REVIEW SYSTEM AN ONLINE TOOL DESIGNED TO TAKE THE WORK OUT OF YOUR COMPENSATION REVIEW PROCESS MERCER S COMPENSATION ANALYSIS AND REVIEW SYSTEM www.imercer.com/cars Mercer

More information

WHITE PAPER DON T REACT ACT! HOW PROACTIVE REVENUE MANAGEMENT CAN PAY OFF BIG IN TODAY S MARKETS

WHITE PAPER DON T REACT ACT! HOW PROACTIVE REVENUE MANAGEMENT CAN PAY OFF BIG IN TODAY S MARKETS WHITE PAPER DON T REACT ACT! HOW PROACTIVE REVENUE MANAGEMENT CAN PAY OFF BIG IN TODAY S MARKETS CONTENTS EXECUTIVE SUMMARY 1 INTRODUCTION 2 REACTING TO A POOR CUSTOMER EXPERIENCE IS TOO LATE AND LEADS

More information

Software Tax Characterization Helpdesk Quarterly April 2012

Software Tax Characterization Helpdesk Quarterly April 2012 Software Tax Characterization Helpdesk Quarterly April 2012 Characterizing foreign software revenues is a complex challenge for large and small software firms alike. Variations in the rules around the

More information

Motion Graphic Design Census. 10 hrs. motiongraphicdesigncensus.org. 9 hrs.

Motion Graphic Design Census. 10 hrs. motiongraphicdesigncensus.org. 9 hrs. 8 h 2010 Motion Graphic Design Census 10 hrs. motiongraphicdesigncensus.org 9 hrs. A Note on the Survey. First, let me apologize for the delay in getting this actually done and out to you. I bit off much

More information

Azure Machine Learning, SQL Data Mining and R

Azure Machine Learning, SQL Data Mining and R Azure Machine Learning, SQL Data Mining and R Day-by-day Agenda Prerequisites No formal prerequisites. Basic knowledge of SQL Server Data Tools, Excel and any analytical experience helps. Best of all:

More information

Using Borland Deployment Op-Center to manage CaliberRM, StarTeam, and Mercury TestDirector server environments

Using Borland Deployment Op-Center to manage CaliberRM, StarTeam, and Mercury TestDirector server environments Using Borland Deployment Op-Center to manage CaliberRM, StarTeam, and Mercury TestDirector server environments A Borland White Paper By Darrell Kalichak March 2005 Contents Introduction... 3 Deployment

More information

amdocs > customer experience systems innovation AMDOCS SELF-SERVICE AMDOCS SELF-SERVICE 1

amdocs > customer experience systems innovation AMDOCS SELF-SERVICE AMDOCS SELF-SERVICE 1 amdocs > customer experience systems innovation AMDOCS SELF-SERVICE AMDOCS > CUSTOMER EXPERIENCE SYSTEMS INNOVATION WWW.AMDOCS.COM AMDOCS SELF-SERVICE 1 IF YOUR CUSTOMERS WANT MORE CONTROL, JUST GIVE IT

More information

Data Mining Methods: Applications for Institutional Research

Data Mining Methods: Applications for Institutional Research Data Mining Methods: Applications for Institutional Research Nora Galambos, PhD Office of Institutional Research, Planning & Effectiveness Stony Brook University NEAIR Annual Conference Philadelphia 2014

More information

Triple-play subscriptions to rocket to 400 mil.

Triple-play subscriptions to rocket to 400 mil. Triple-play criptions to rocket to 400 mil. Global triple-play criptions will reach 400 million by 2017; up by nearly 300 million on the end-2011 total and up by 380 million on the 2007 total, according

More information

SP/1/EN/5. Product Summary. KLIMA 1 Catalogue KLIMA 2 Catalogue FILTER Catalogue. The art of handling air

SP/1/EN/5. Product Summary. KLIMA 1 Catalogue KLIMA 2 Catalogue FILTER Catalogue. The art of handling air SP/1/EN/5 Product Summary KLIMA 1 Catalogue KLIMA 2 Catalogue FILTER Catalogue The art of handling air Components and Systems for Ventilation and Air Conditioning As an internationally leading manufacturer

More information

Data Mining Practical Machine Learning Tools and Techniques

Data Mining Practical Machine Learning Tools and Techniques Ensemble learning Data Mining Practical Machine Learning Tools and Techniques Slides for Chapter 8 of Data Mining by I. H. Witten, E. Frank and M. A. Hall Combining multiple models Bagging The basic idea

More information

WANT TO STRENGTHEN YOUR CUSTOMER RELATIONSHIPS? THE RIGHT SALES STRATEGY WILL HELP

WANT TO STRENGTHEN YOUR CUSTOMER RELATIONSHIPS? THE RIGHT SALES STRATEGY WILL HELP Amdocs Sales WANT TO STRENGTHEN YOUR CUSTOMER RELATIONSHIPS? THE RIGHT SALES STRATEGY WILL HELP Changing market conditions mean that you have to do more than just keep your customers you have to grow your

More information

GfK PURCHASING POWER INTERNATIONAL

GfK PURCHASING POWER INTERNATIONAL GfK PURCHASING POWER INTERNATIONAL 1 Agenda 1. Europe 3 2. Americas 45 3. Asia & Near East 54 4. Afrika 66 5. Australia 68 6. Overview of countries and available levels 70 2 2 EUROPE 4 GfK

More information

What Is the Total Public Spending on Education?

What Is the Total Public Spending on Education? What Is the Total Public Spending on Education? Indicator On average, OECD countries devote 12.9% of total public expenditure to, but values for individual countries range from less than 10% in the Czech

More information

October 2007. Trust in Advertising. a global Nielsen

October 2007. Trust in Advertising. a global Nielsen October 2007 Trust in Advertising a global Nielsen consumer report Word-of-mouth the most powerful selling tool: Nielsen Survey Traditional Media Advertising Still More Credible Worldwide Than Ads on Search

More information

CI6227: Data Mining. Lesson 11b: Ensemble Learning. Data Analytics Department, Institute for Infocomm Research, A*STAR, Singapore.

CI6227: Data Mining. Lesson 11b: Ensemble Learning. Data Analytics Department, Institute for Infocomm Research, A*STAR, Singapore. CI6227: Data Mining Lesson 11b: Ensemble Learning Sinno Jialin PAN Data Analytics Department, Institute for Infocomm Research, A*STAR, Singapore Acknowledgements: slides are adapted from the lecture notes

More information

AMDOCS BILLING SYSTEM TRANSFORMATION DELIVERS NEW TRIPLE-PLAY SERVICES TO KAZAKHTELCOM CUSTOMERS

AMDOCS BILLING SYSTEM TRANSFORMATION DELIVERS NEW TRIPLE-PLAY SERVICES TO KAZAKHTELCOM CUSTOMERS AMDOCS CUSTOMER success story AMDOCS BILLING SYSTEM TRANSFORMATION DELIVERS NEW TRIPLE-PLAY SERVICES TO KAZAKHTELCOM CUSTOMERS With Amdocs we re in far better position to respond to customer demand by

More information

A Nielsen Report Global Trust in Advertising and Brand Messages. April 2012

A Nielsen Report Global Trust in Advertising and Brand Messages. April 2012 A Nielsen Report Global Trust in Advertising and Brand Messages April 2012 CONSUMER TRUST IN EARNED ADVERTISING GROWS IN IMPORTANCE Earned media sources remain most credible Trust in traditional paid advertising

More information

Integrating CaliberRM with Software Configuration Management Tools

Integrating CaliberRM with Software Configuration Management Tools Integrating CaliberRM with Software Configuration Management Tools A Borland White Paper By Jenny Rogers, CaliberRM Technical Writer January 2002 Contents Introduction... 3 Enabling SCM for a Project...

More information

On What Resources and Services Is Education Funding Spent?

On What Resources and Services Is Education Funding Spent? Indicator On What Resources and Services Is Education Funding Spent? In primary, secondary and post-secondary non-tertiary education combined, current accounts for an average of 92% of total spending in

More information

KnowledgeSEEKER POWERFUL SEGMENTATION, STRATEGY DESIGN AND VISUALIZATION SOFTWARE

KnowledgeSEEKER POWERFUL SEGMENTATION, STRATEGY DESIGN AND VISUALIZATION SOFTWARE POWERFUL SEGMENTATION, STRATEGY DESIGN AND VISUALIZATION SOFTWARE Most Effective Modeling Application Designed to Address Business Challenges Applying a predictive strategy to reach a desired business

More information

Silvermine House Steenberg Office Park, Tokai 7945 Cape Town, South Africa Telephone: +27 21 702 4666 www.spss-sa.com

Silvermine House Steenberg Office Park, Tokai 7945 Cape Town, South Africa Telephone: +27 21 702 4666 www.spss-sa.com SPSS-SA Silvermine House Steenberg Office Park, Tokai 7945 Cape Town, South Africa Telephone: +27 21 702 4666 www.spss-sa.com SPSS-SA Training Brochure 2009 TABLE OF CONTENTS 1 SPSS TRAINING COURSES FOCUSING

More information

CaliberRM / LDAP Integration. CaliberRM

CaliberRM / LDAP Integration. CaliberRM CaliberRM / LDAP Integration CaliberRM Borland Software Corporation 100 Enterprise Way Scotts Valley, California 95066-3249 www.borland.com Made in Borland Copyright 2004 Borland Software Corporation.

More information

It looks like your regular telephone.

It looks like your regular telephone. It looks like your regular telephone. But it s a lot better. CISCO PHONE SYSTEM SOLUTIONS FOR SMALL AND MEDIUM BUSINESSES Between the increased productivity and administrative savings we ve experienced,

More information

Report on Government Information Requests

Report on Government Information Requests Report on Government Information Requests January - June, Apple takes our commitment to protecting your data very seriously and we work incredibly hard to deliver the most secure hardware, software and

More information

Configuring DHCP for ShoreTel IP Phones

Configuring DHCP for ShoreTel IP Phones Configuring DHCP for ShoreTel IP Phones Network Requirements and Preparation 3 Configuring DHCP for ShoreTel IP Phones The ShoreTel server provides the latest application software and configuration information

More information

Unlocking the True Potential of Usage Data. Amdocs White Paper November 2014

Unlocking the True Potential of Usage Data. Amdocs White Paper November 2014 Unlocking the True Potential of Usage Data Amdocs White Paper November 2014 UNLOCKING THE TRUE POTENTIAL OF USAGE DATA 2 With the continued pressure to differentiate and lead in a market suffering from

More information

Data Mining: STATISTICA

Data Mining: STATISTICA Data Mining: STATISTICA Outline Prepare the data Classification and regression 1 Prepare the Data Statistica can read from Excel,.txt and many other types of files Compared with WEKA, Statistica is much

More information

CISCO SMALL AND MEDIUM BUSINESS CLASS VOICE SOLUTIONS: CISCO CALLMANAGER EXPRESS BUNDLES

CISCO SMALL AND MEDIUM BUSINESS CLASS VOICE SOLUTIONS: CISCO CALLMANAGER EXPRESS BUNDLES OVERVIEW CISCO SMALL AND MEDIUM BUSINESS CLASS VOICE SOLUTIONS: CISCO CALLMANAGER EXPRESS BUNDLES COMPANY PROFILE Cisco CallManager Express (CME) promotional bundles are appropriate for small businesses

More information

Agenda. Company Platform Customers Partners Competitive Analysis

Agenda. Company Platform Customers Partners Competitive Analysis KidoZen Overview Agenda Company Platform Customers Partners Competitive Analysis Our Vision Power the backend of the post- web enterprise Key Challenges of the Mobile Enterprise Enterprise systems integration

More information

The SPSS TwoStep Cluster Component

The SPSS TwoStep Cluster Component White paper technical report The SPSS TwoStep Cluster Component A scalable component enabling more efficient customer segmentation Introduction The SPSS TwoStep Clustering Component is a scalable cluster

More information

Cisco CNS NetFlow Collection Engine Version 4.0

Cisco CNS NetFlow Collection Engine Version 4.0 Data Sheet Cisco CNS NetFlow Collection Engine Version 4.0 Cisco CNS is a suite of intelligence engines that work with device agents to create a programmable network. Cisco CNS extends the management plane

More information

Customers have noticed that we are very responsive, meet our service level agreements, and are more cost conscious. MIKE ROBINSON

Customers have noticed that we are very responsive, meet our service level agreements, and are more cost conscious. MIKE ROBINSON AMDOCS CUSTOMER success story AMDOCS HELPS VIRGIN MEDIA IMPROVE WORKFLOW AND INCREASE EFFICIENCY BY MORE THAN 10% Customers have noticed that we are very responsive, meet our service level agreements,

More information

Make the invisible visible! SENSORS WITH EXCELLENT BACKGROUND SUPPRESSION

Make the invisible visible! SENSORS WITH EXCELLENT BACKGROUND SUPPRESSION Make the invisible visible! SENSORS WITH EXCELLENT BACKGROUND SUPPRESSION photoelectric sensors Thanks to its vision for innovation and technological enhancement, Contrinex keeps on setting new standards

More information

Sybase Solutions for Healthcare Adapting to an Evolving Business and Regulatory Environment

Sybase Solutions for Healthcare Adapting to an Evolving Business and Regulatory Environment Sybase Solutions for Healthcare Adapting to an Evolving Business and Regulatory Environment OVERVIEW Sybase Solutions for Healthcare Adapting to an Evolving Business and Regulatory Environment Rising medical

More information

Amdocs Data Integrity Management Suite. Rediscover your network

Amdocs Data Integrity Management Suite. Rediscover your network Amdocs Data Integrity Management Suite Rediscover your network Amdocs Data Integrity Management Suite 2 Data integrity management is now a must-have To increase revenues and cut costs, service providers

More information

Logix5000 Clock Update Tool V2.00.36. 12/13/2005 Copyright 2005 Rockwell Automation Inc., All Rights Reserved. 1

Logix5000 Clock Update Tool V2.00.36. 12/13/2005 Copyright 2005 Rockwell Automation Inc., All Rights Reserved. 1 Logix5000 Clock Update Tool V2.00.36. 1 Overview Logix5000 Clock Update Tool 1. 1. What is is it? it? 2. 2. How will it it help me? 3. 3. How do do I I use it? it? 4. 4. When can I I get get it? it? 2

More information

amdocs > customer experience systems innovation AMDOCS SALES QUOTE ORDER

amdocs > customer experience systems innovation AMDOCS SALES QUOTE ORDER AMDOCS SALES QUOTE ORDER AMDOCS > CUSTOMER EXPERIENCE SYSTEMS INNOVATION WWW.AMDOCS.COM AMDOCS SALES QUOTE ORDER IS YOUR BUSINESS SKIPPING A BEAT? Orders are the heartbeat of your business, and no business

More information

Image Lab Software for the GS-900 Densitometer

Image Lab Software for the GS-900 Densitometer Image Lab Software for the GS-900 Densitometer Quick Start Guide Catalog # 170-9690 Bio-Rad Technical Support For help and technical advice, please contact the Bio-Rad Technical Support department. In

More information

How To Be Successful In The Czech Republic

How To Be Successful In The Czech Republic AMDOCS CUSTOMER success story AMDOCS AND IBM HELP T-MOBILE CZECH REPUBLIC ACHIEVE MOBILE AND FIXED-LINE NETWORK CONVERGENCE Amdocs OSS is a very important part of the strategic development of T-Mobile.

More information

KnowledgeSTUDIO HIGH-PERFORMANCE PREDICTIVE ANALYTICS USING ADVANCED MODELING TECHNIQUES

KnowledgeSTUDIO HIGH-PERFORMANCE PREDICTIVE ANALYTICS USING ADVANCED MODELING TECHNIQUES HIGH-PERFORMANCE PREDICTIVE ANALYTICS USING ADVANCED MODELING TECHNIQUES Translating data into business value requires the right data mining and modeling techniques which uncover important patterns within

More information

Supported Payment Methods

Supported Payment Methods Supported Payment Methods Global In the global payments market, credit cards are the most popular payment method. However, BlueSnap expands the payment selection by including not only the major credit

More information

NETCOM DRIVING DOWN THE COST OF BACKHAUL WITH AMDOCS CRAMER

NETCOM DRIVING DOWN THE COST OF BACKHAUL WITH AMDOCS CRAMER AMDOCS CUSTOMER success story NETCOM DRIVING DOWN THE COST OF BACKHAUL WITH AMDOCS CRAMER One of the big advantages of what we have achieved by implementing Cramer and its efficient work processes is the

More information

Data Mining. Nonlinear Classification

Data Mining. Nonlinear Classification Data Mining Unit # 6 Sajjad Haider Fall 2014 1 Nonlinear Classification Classes may not be separable by a linear boundary Suppose we randomly generate a data set as follows: X has range between 0 to 15

More information

CISCO MDS 9000 FAMILY PERFORMANCE MANAGEMENT

CISCO MDS 9000 FAMILY PERFORMANCE MANAGEMENT WHITE PAPER CISCO MDS 9000 FAMILY PERFORMANCE MANAGEMENT As storage area networks (SANs) grow, so do the challenges for monitoring and resolving performance issues. Summary views of networkwide historical

More information