Application of neural network to classify profitable customers for recommending services in u-commerce

Size: px
Start display at page:

Download "Application of neural network to classify profitable customers for recommending services in u-commerce"

Transcription

1 Application of neural network to classify profitable customers for recommending services in u-commerce Young Sung Cho 1, Song Chul Moon 2, and Keun Ho Ryu 1 1. Database and Bioinformatics Laboratory, Computer Science in College of Electrical and Computer Engineering, Chungbuk National University, Cheongju, Korea 2. Department of Computer Science, Namseoul University, Cheonan-city, Korea youngscho@empal.com, moon@nsu.ac.kr : moon is correspondence author, khryu@dblab.chungbuk.ac.kr Abstract This paper proposes an application of neural network to classify profitable customers for recommending services in u- Commerce under ubiquitous computing environment which is required by real time accessibility and agility. In this paper, it is necessary for us to classify profitable customers with RFM(Recency, Frequency, and Monetary) score, to use the purchase data to join the customers using SOM network with input vectors of different features, RFM factors in order to do the recommending services in u-commerce, to reduce customers search effort for finding items, and to improve the rate of accuracy. To verify improved performance of proposing system, we make experiments with dataset collected in a cosmetic internet shopping mall. Keywords RFM; Collaborative filtering; SOM(Self-Organizing Map); 1. Introduction Due to the advent of ubiquitous networking environment, it is becoming a part of our common life style that the demands for enjoying the wireless internet using intelligent portable device such as smart phone, are increasing anytime or anyplace without any restriction of time and place. Data mining is useful in finding knowledge from huge amounts of data. Deboeck and Kohonen describe how SOM (Self-Organizing Map) can be used for effective clustering and segmentation of financial data[1]. Clustering algorithm is a kind of customer segmentation methods commonly used in data mining. In this paper, SOM network is applied to segment the purchase data to join user data and finally forms clusters of the purchase data to join user data with different features, RFM factors in order to do the recommending services in u-commerce. The recommendation system helps customers to find easily items and helps the e-commerce companies to set easily their target customer by automated recommending process. Therefore, customers and companies can take some benefit from recommendation system. The possession of intelligent recommendation system is becoming the company's business strategy. A recommendation system using RFM segmentation analysis technique to meet the needs of customers, it has been actually processed the research[2-5]. We can make the solution for an efficient purchase pattern clustering based on SOM. Finally, we can improve the performance of personal ontology recommender system through SOM learning method based on the purchase data to show customer's buying patterns. The next chapter briefly reviews the literature related to studies. The chapter 3 is described a new method for personalized recommendation system in detail, such as system architecture with sub modules, the procedure of processing the recommendation, the algorithm for proposing system. The chapter 4 describes the evaluation of this system in order to prove the criteria of logicality and efficiency through the implementation and the experiment. In chapter 5, finally it is described the conclusion of paper and further research direction. 2. Relative Works 2.1 RFM RFM is generally used in database marketing and direct marketing and has received particular attention in retail. RFM consists of three initial characters. R means recency- How recently a customer has purchased?. F means frequency- How often she purchases?. M means monetary- How much does she spend?. The general way to use RFM model in customer behavior analysis is to sort the customer data by each dimension of RFM variables and then divide the data into five equal quintiles. For recency, the customer database is sorted by purchase dates by descending order. So, the top segment is given a value of 5 and the others are descendingly assigned of 4, 3, 2, and 1. For frequency and monetary, sorting customer visiting frequency data and the customer data related to the amount of the money spent in descending order, respectively. These three variables belong to behavioral variables and can be acted as the segmenting variables by observing customers attitudes toward the product, brand, benefit, or even loyalty from the database. We can suggest that using average purchase amount instead of total accumulated purchase amount is better in order to reduce co-linearity of frequency and monetary. Finally, all customers are presented by 555, 554, 553,, 111, which thus creates 125 (5 5 5) RFM UCAWSN-14, Jeju, Kora, July 7-10, http//

2 cells. Moreover, the best customer segment is 555, while the worst customer segment is 111. Based on the assigned RFM behavior scores, customers can be classified into segments and their profitability can be further analyzed. The RFM score can be a basis factor how to determine purchasing behavior on the internet shopping mall, is helpful to buy the item which they really want by the personalized recommendation[5-6]. 2.2 neural network The SOM introduced by T. Kohonen, is an unsupervised learning algorithm for clustering[8]. Also SOM is called as a neural networks model based on competitive learning. SOM can convert a high dimensional input space into a simpler low dimensional discrete map. It has two layers which are input and feature layers. We can cluster all elements by feature map with two dimensions. Firstly SOM performs clustering with input vector X and weight matrix W. The data point is treated one at a time. Also the closest to is found by Euclidean distance, and then is updated as the following [9]. where and are current and new weights. So moves to. This learning is repeated until given conditions such as change rate of weights and the number of repeat. In this paper, we can use the SOM learning algorithm [9], where and are current and new weights. So moves to. This learning is repeated until given conditions such as change rate of weights and the number of repeat. In this paper, we can use the SOM learning algorithm[9] as the following. Table 1. SOM learning algorithm Input Set of N dimension vector, X // input node Output Subset of input data (M subsets) begin Randomly initialize, for each node ; for (t=0; unless a stopping condition is reached; Increase t) for (for all input data) for (i=0 to M) (1) ; Find the winner j=i such that Di(t) is minimum for over all I ; Update the winner j (and its neighbors) ; end 3. Our proposal for Recommender System in u-commerce 3.1 Clustering Method using SOM based on Purchase data to join user data This clustering using the neural network in this paper had better than clustering the data directly, is depicted. First, a large set of prototyping for clustering user data (much larger than the expected number of output count, purchase pattern in clusters) is formed using the SOM or some vector quantization algorithm. We can apply a SOM clustering to purchase data to join user data in order to classify profitable customers with RFM score having RFM factors for recommending services in u-commerce. Finally the prototyping application is made and the prototyping result is classified to make clusters in order to classify profitable customers with RFM score. The system can use the code of classification(54 bits), demographic variables such as age, gender, an occupation, skin type, region and customer's RFM factors as input vectors for pre-processing so as to be possible to recommend the items with efficiency. The system can make clusters with neighborhood customer-group using a new clustering method, which is classified by the code of classification and customer s RFM score in customer information. The system can take the preprocessing task which is able to use the whole purchase data by each rank of the RFM score and then makes cluster of purchase data sorted by item category, joined cluster of user data called by customer DB, neighborhood user group[5]. As a matter of course, the system can use the whole purchase data(sale). After that, the system using SOM algorithm, can recommend the items by each rank of the RFM score. The SOM learning algorithm for clustering of user s information to join user s score is depicted as the following Table 2. Table 2. SOM learning algorithm for clustering of user s information to join user s score Step 1 Initialize parameters of SOM model // Representative pattern of bits for demographic variable(54bits), RFM(15bits)rs) Step 2 Set input value vector Step 3 Calculate Output value Step 4 Select winner node ) Step 5 Readjust connection weights Step 6 Completion of learning // IF Reach the learning cycles then Make the result of SOM otherwise GO to Step 2 Step 7 Calculate output value Step 8 Calculate winner node (2) (3) (4) UCAWSN-14, Jeju, Kora, July 7-10, http//

3 Step 9 Result of pattern 3.2 The procedural algorithm for recommendation The system can search cluster selected by using the code of classification and customer's RFM score in users' information. It can scan the preference of brand item in cluster, suggest the brand item with the highest score in item category selected by the highest probability for preference of item category as the average of brand item. This system can create the list of recommendation with TOP-N of brand item with the highest score to recommend the item with purchasability efficiently. This system can recommend the items with efficiency, are used to generate the recommendable item according to the basic of loyalty of RFM factors through clustering method using SOM algorithm. It can recommend the associated item to TOP-N of recommending list. This system takes the cross comparison with purchase data in order to avoid the duplicated recommendation which it has ever taken. 4. The environment of implementation and experiment & evaluation 4.1 Experimental data for evaluation We make the implementation for prototyping of e-shopping mall which handles the cosmetics professionally and do experiments. It is the environment of implementation and experiments in Apache2.2.14, j2sdk 1.7.0_11 as Java environment, JSP/PHP as serverside script, JQuery*mobile, XML/XHTML4.0/HTML5.0/CSS3/JAVASCRIPT as client-side script, C#.net framework 2.0, jakarta-tomcat, apache as web server under Windows O.S. 4.2 Experimental data for evaluation We used 319 users who have had the experience to buy items in e-shopping mall, 580 cosmetic items used in current industry, 1600 results of purchase data recommended in order to evaluate the proposing system[4]. In order to do that, we make the implementation for prototyping of the internet shopping mall which handles the cosmetics professionally and do the experiment. We have finished the system implementation about prototyping recommendation system. We d try to carry out the experiments in the same condition with dataset collected in a cosmetic internet shopping mall. It could be evaluated in MAE and output count by RFM score level for the recommendation system in clusters. It could be proved by the experiment through the experiment with learning data set for 12 months, testing data set for 3 months in a cosmetic cyber shopping mall[4]. The 1 st system of clustering method using SOM based on purchase data, is proposing system called by SOM, the 2 nd system is other previous system(k-means) using k-means clustering algorithm based on the whole data. 4.3 SOM Results for application of neural network SOM network is applied to classify purchase data to join the user data, finally forms clusters of purchase pattern groups of user data with different features, demographic variables and RFM factors as input vectors. In order to segment purchase data join to user data into appropriate number of clusters, SOM is applied to determine the number of clusters. Below figure 1 and figure 2, nine clusters are recommended among 1,600 purchase data, 319 customers when recency, frequency, monetary are the three input variables and then divide the data into five equal quintiles beside off demographic variables. From the SOM result, we can find 5 level based on RFM score of customer so as to recommend the items in real-time environment. The following figures show the result with statistics of output counts based on purchase data for the segmentation as comparing SOM and k-means. It is depicted in the result, that level 1 is the RFM score of customer is more 90 points, level 2 is the range of RFM score (score >= 80 and score < 90), level 3 is the range of RFM score (score >= 60 and score < 80), level 4 is the range of RFM score (score >= 40 and score < 60), and level 5 is the range of RFM score (score >=20 and score < 40). The purchase data is not at the range of RFM score (score < 20). It shows the improvement on the number of output purchase pattern count in the result of evaluation levels for the proposal system(som) comparing with previous system(k-means). The proposal is higher on the number of output purchase pattern count than the previous system from level 1 to level 5. As a result of that, the performance of the proposal system is improved better on the number of output purchase pattern count than previous system from level 1 to level 5. Figure 1. descriptive statistics of output counts by the level of RFM score with comparing SOM and k-means 4.4 Experiment & Evaluation The proposing system's overall performance evaluation was performed by dividing the two directions. The first measurement is output counts of purchase pattern in the table 2. The second evaluation is mean absolute error(mae). The mean absolute error between the predicted ratings and the actual ratings of users within the test set. The mean absolute error is computed the following expression (5) over all data sets generated on purchased data. UCAWSN-14, Jeju, Kora, July 7-10, http//

4 MAE = (5) N represents the total number of predictions, ε represents the error of the forecast and actual phase i represents each prediction. Table 3. The result of MAE in cluster by RFM score level RFM SOM K_means SOM k-means Score output output MAE MAE Level count count Figure 2. The result of MAE by comparing proposal system(som) with previous system(k-means) Above table 2 shows the result of evaluation metrics (MAE) for recommendation system. It shows the improvement in the result of evaluation rates for proposal system comparing with previous system(kmeans). The proposal system is better than the previous system from level 2 to level 4 in the part of large purchase count. As a result of that, the performance of the proposal system is improved better than previous system from level 2 to level 4 although it is not good on level 1 and level 5 in the part of small purchase count. The following figure 3 is shown in the site of recommendation of cosmetics on a smart phone. This system can be used immediately in u-commerce under ubiquitous computing environment which is required by real time accessibility and agility because of finishing particular tasks such as clustering and calculating the probability of preference for pre-processing to reduce the processing time. in real-time environment. Figure 3. The site of recommendation of cosmetics 5. Conclusion Recently u-commerce as a application field under ubiquitous computing environment required by real time accessibility and agility, is in the limelight[4]. We proposed an application of neural network to classify profitable customers for recommending services in u-commerce in order to improve the accuracy of recommendation with high purchasability. We have described that the performance of the proposal system with neural network is improved better than previous system(k-means) from level 2 to level 4 in the part of large purchase count although it is not good on level 1 and level 5 in the part of small purchase count. It could make appropriate recommendation for each user's level possible based on neural network in real-time environment. We could simulate the application of neural network to classify profitable customers, generate recommending items to be possible to measure the purchasability for the future.. Thus, we could make the level of RFM score for the measurement of accuracy and efficiency, and validate the system by our results, then we can recommend items by each user's level according to the loyalty of RFM factors. To verify improved better performance of proposing system, we carried out the experiments in the same dataset collected in a cosmetic internet shopping mall. It is meaningful to present an application of neural network to classify profitable customers for recommending services in u-commerce under ubiquitous computing environment which is required by real time accessibility and agility. The following research will be looking for ways of a personalized recommendation using fuzzy clustering method to increase the efficiency and scalability. Acknowledgements This is work 2) was supported by funding of Namseoul University References 1. Deboeck, G. and Kohonen, T. Visual Explorations in Finance with Self-Organizing Maps. London Springer- Verlag Cho, Y.S., Moon, S.C., Jeong, S.P., Oh, I.B., Ryu, K.H. Efficient Purchase Pattern Clustering Based on SOM for Recommender System in u-commerce. Y.-S. Jeong et al. (eds.), Ubiquitous Information Technologies and Applications, Lecture Notes in Electrical Engineering 2014; 280: Cho, Y.S., Moon, S.C., Ryu, K.H. Mining Association Rules using RFM Scoring Method for Personalized u- UCAWSN-14, Jeju, Kora, July 7-10, http//

5 Commerce Recommendation System in emerging data. International Conferences, SecTech, CA, CES3 2012, Held in Conjunction with GST 2012, Communications in Computer and Information Science 2012;341: Cho, Y.S., Moon, S.C., Noh, S.C. Weighted Mining Association Rules Based Quantity Item with RFM Score for Personalized u-commerce Recommendation System. the 8 th International Conference GCP2013, LNCS 2013;7861: Cho, Y.S., Moon, S.C., Jeong, S.P., Oh, I.B., Ryu, K.H. Clustering Method using Item Preference based on RFM for Recommendation System in u-commerce. Ubiquitous Information Technologies and Applications LNEE 2012; 214: Wei, J.-T., Lin, S.-Y. and Wu, H.-H. The review of the application of RFM model. African Journal of Business Management, 2010; 4(19): Kate A. Smith, Jatinder N. D Gupta. Neural Network in Business Techniques and Applications. In The IDEA GROUP PUBLISHING (2001). 8. T. Kohonen, Self-Organizing Maps. Springer T. Hastie, R. Tibshirani, and J. Friedman The Elements of Statistical Learning Data Mining, Inference, and Prediction. Springer UCAWSN-14, Jeju, Kora, July 7-10, http//

Clustering Method using Item Preference based on RFM for Recommendation System in u-commerce

Clustering Method using Item Preference based on RFM for Recommendation System in u-commerce Clustering Method using Item Preference based on RFM for Recommendation System in u-commerce Young Sung Cho 1, Song Chul Moon 2, Seon-phil Jeong 3, In-Bae Oh 4, Keun Ho Ryu 1 1 Department of Computer Science,

More information

Combining RFM Model and Clustering Techniques for Customer Value Analysis of a Company selling online

Combining RFM Model and Clustering Techniques for Customer Value Analysis of a Company selling online Combining RFM Model and Clustering Techniques for Customer Value Analysis of a Company selling online Rachid AIT DAOUD Department of physics r.aitdaoud@usms.ma Abdellah AMINE Department of Mathematics

More information

Developing Strategies for Blooming Marketing of a Local Business An Integrated Approach

Developing Strategies for Blooming Marketing of a Local Business An Integrated Approach DOI: 10.7763/IPEDR. 2014. V69. 9 Developing Strategies for Blooming Marketing of a Local Business An Integrated Approach Chung-Wei Yeh1 and Kee-Rong Wu2 1 2 Dept. of Management Information System, Kao

More information

Case studies in Data Mining & Knowledge Discovery

Case studies in Data Mining & Knowledge Discovery Case studies in Data Mining & Knowledge Discovery Knowledge Discovery is a process Data Mining is just a step of a (potentially) complex sequence of tasks KDD Process Data Mining & Knowledge Discovery

More information

CHAPTER 8 APPLICATION OF CLUSTERING TO CUSTOMER RELATIONSHIP MANAGEMENT

CHAPTER 8 APPLICATION OF CLUSTERING TO CUSTOMER RELATIONSHIP MANAGEMENT CHAPTER 8 APPLICATION OF CLUSTERING TO CUSTOMER RELATIONSHIP MANAGEMENT 8.1 Introduction Customer Relationship Management (CRM) is a process that manages the interactions between a company and its customers.

More information

Customer analysis of the securities companies based on modified RFM model and simulation by SOM neural network

Customer analysis of the securities companies based on modified RFM model and simulation by SOM neural network Asian Journal of Information and Communications 2017, Vol. 9, No. 2, 58-66 6) Customer analysis of the securities companies based on modified RFM model and simulation by SOM neural network Juan Cheng*

More information

CHAPTER 8 PROFILING METHODOLOGY

CHAPTER 8 PROFILING METHODOLOGY 107 CHAPTER 8 PROFILING METHODOLOGY 8.1 INTRODUCTION This research aims to develop a customer profiling methodology with reference to customer lifetime value, relationship, satisfaction, behavior using

More information

CHAPTER 4 A FRAMEWORK FOR CUSTOMER LIFETIME VALUE USING DATA MINING TECHNIQUES

CHAPTER 4 A FRAMEWORK FOR CUSTOMER LIFETIME VALUE USING DATA MINING TECHNIQUES 49 CHAPTER 4 A FRAMEWORK FOR CUSTOMER LIFETIME VALUE USING DATA MINING TECHNIQUES 4.1 INTRODUCTION Different groups of customers prefer some special products. Customers type recognition is one of the main

More information

Information Sciences

Information Sciences Information Sciences 179 (2009) 3505 3519 Contents lists available at ScienceDirect Information Sciences journal homepage: www.elsevier.com/locate/ins A hybrid of sequential rules and collaborative filtering

More information

A Hybrid SOM-Altman Model for Bankruptcy Prediction

A Hybrid SOM-Altman Model for Bankruptcy Prediction A Hybrid SOM-Altman Model for Bankruptcy Prediction Egidijus Merkevicius, Gintautas Garšva, and Stasys Girdzijauskas Department of Informatics, Kaunas Faculty of Humanities, Vilnius University Muitinės

More information

Research Article Analyzing Patients Values by Applying Cluster Analysis and LRFM Model in a Pediatric Dental Clinic in Taiwan

Research Article Analyzing Patients Values by Applying Cluster Analysis and LRFM Model in a Pediatric Dental Clinic in Taiwan e Scientific World Journal, Article ID 685495, 7 pages http://dx.doi.org/10.1155/2014/685495 Research Article Analyzing Patients Values by Applying Cluster Analysis and LRFM Model in a Pediatric Dental

More information

A study of extended RFM analysis based on PLSA model for Purchase History Data

A study of extended RFM analysis based on PLSA model for Purchase History Data A study of extended RFM analysis based on PLSA model for Purchase History Data Qian Zhang Graduate School of Creative Science and Engineering Waseda University, Tokyo, Japan Tel: (+81) 03-5286-3290, Email:

More information

Targeting Omni-Channel Shoppers

Targeting Omni-Channel Shoppers Targeting Omni-Channel Shoppers Marketing Data Solutions for the Retail Industry Publication Date: March, 2015 www.datamentors.com info@datamentors.com DataMentors, LLC Data-Driven Targeting Omni-Channel

More information

Intelligent Marketing and Merchandising Techniques for an Internet Shopping Mall

Intelligent Marketing and Merchandising Techniques for an Internet Shopping Mall Intelligent Marketing and Merchandising Techniques for an Internet Shopping Mall Sung Ho Ha, Sung Min Bae, Sang Chan Park Korea Advanced Institute of Science and Technology (KAIST) Abstract In this paper,

More information

ML Methods for Solving Complex Sorting and Ranking Problems in Human Hiring

ML Methods for Solving Complex Sorting and Ranking Problems in Human Hiring ML Methods for Solving Complex Sorting and Ranking Problems in Human Hiring 1 Kavyashree M Bandekar, 2 Maddala Tejasree, 3 Misba Sultana S N, 4 Nayana G K, 5 Harshavardhana Doddamani 1, 2, 3, 4 Engineering

More information

PREDICTING EMPLOYEE ATTRITION THROUGH DATA MINING

PREDICTING EMPLOYEE ATTRITION THROUGH DATA MINING PREDICTING EMPLOYEE ATTRITION THROUGH DATA MINING Abbas Heiat, College of Business, Montana State University, Billings, MT 59102, aheiat@msubillings.edu ABSTRACT The purpose of this study is to investigate

More information

Intelligent Marketing and Merchandising Techniques for an Internet Shopping Mall

Intelligent Marketing and Merchandising Techniques for an Internet Shopping Mall Association for Information Systems AIS Electronic Library (AISeL) PACIS 2001 Proceedings Pacific Asia Conference on Information Systems (PACIS) December 2001 Intelligent Marketing and Merchandising Techniques

More information

Intelligent Marketing and Merchandising Techniques for an Internet Shopping Mall

Intelligent Marketing and Merchandising Techniques for an Internet Shopping Mall Association for Information Systems AIS Electronic Library (AISeL) PACIS 2001 Proceedings Pacific Asia Conference on Information Systems (PACIS) 12-31-2001 Intelligent Marketing and Merchandising Techniques

More information

Chapter 3. Integrating AHP, clustering and association rule mining

Chapter 3. Integrating AHP, clustering and association rule mining Chapter 3. Integrating AHP, clustering and association rule mining This chapter presents a novel product recommendation methodology that combines group decision-making and data mining. This method has

More information

Application of an Improved Neural Network Algorithm in E- commerce Customer Satisfaction Evaluation

Application of an Improved Neural Network Algorithm in E- commerce Customer Satisfaction Evaluation Application of an Improved Neural Network Algorithm in E- commerce Customer Satisfaction Evaluation Lei Yang 1,2 *, Ying Ma 3 1 Science and Technology Key Laboratory of Hebei Province, Baoding 071051,

More information

Pareto Classification of Data Mining for Customer Relationship

Pareto Classification of Data Mining for Customer Relationship 2012 International Conference on Information and Network Technology (ICINT 2012) IPCSIT vol 37 (2012) (2012) IACSIT Press, Singapore Pareto Classification of Data Mining for Customer Relationship Velu

More information

A Noble Approach of Clustering the Users in M-Commerce for Providing Segmented Promotion of Goods & Services Using K-means Algorithm

A Noble Approach of Clustering the Users in M-Commerce for Providing Segmented Promotion of Goods & Services Using K-means Algorithm 2012 International Conference on Computer Technology and Science (ICCTS 2012) IPCSIT vol. 47 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V47.19 A Noble Approach of Clustering the Users

More information

A Decision Support System for Market Segmentation - A Neural Networks Approach

A Decision Support System for Market Segmentation - A Neural Networks Approach Association for Information Systems AIS Electronic Library (AISeL) AMCIS 1995 Proceedings Americas Conference on Information Systems (AMCIS) 8-25-1995 A Decision Support System for Market Segmentation

More information

Professor Dr. Gholamreza Nakhaeizadeh. Professor Dr. Gholamreza Nakhaeizadeh

Professor Dr. Gholamreza Nakhaeizadeh. Professor Dr. Gholamreza Nakhaeizadeh Statistic Methods in in Mining Business Understanding Understanding Preparation Deployment Modelling Evaluation Mining Process (( Part 3) 3) Professor Dr. Gholamreza Nakhaeizadeh Professor Dr. Gholamreza

More information

CUSTOMERS CLUSTERING BASED ON RFM SCORE USING GENETIC ALGORITHM

CUSTOMERS CLUSTERING BASED ON RFM SCORE USING GENETIC ALGORITHM ISSN : 1978-774X Proceeding 8 th International Seminar on Industrial Engineering and Management CUSTOMERS CLUSTERING BASED ON RFM SCORE USING GENETIC ALGORITHM Muhammad Ridwan Andi Purnomo 1, Nur Riana

More information

An Application of PDA and Barcode Technology for the Improvement of Information Management in Construction Projects

An Application of PDA and Barcode Technology for the Improvement of Information Management in Construction Projects An Application of PDA and Barcode Technology for the Improvement of Information Management in Construction Projects Se-Wook Oh 1, Hee-Jin Chang 2, Young-Suk Kim 3, Jun-Bok Lee 4 and Han-Soo Kim 5 1 Ph.D.

More information

Case Studies On Data Mining In Market Analysis Shravan Kumar Manthri 1 and Hari Priyanka Chilakalapudi 2

Case Studies On Data Mining In Market Analysis Shravan Kumar Manthri 1 and Hari Priyanka Chilakalapudi 2 Case Studies On Data Mining In Market Analysis Shravan Kumar Manthri 1 and Hari Priyanka Chilakalapudi 2 Abstract- A huge chunk of data is generated each minute in enterprise business. Extracting information

More information

New Customer Acquisition Strategy

New Customer Acquisition Strategy Page 1 New Customer Acquisition Strategy Based on Customer Profiling Segmentation and Scoring Model Page 2 Introduction A customer profile is a snapshot of who your customers are, how to reach them, and

More information

Data Analytics with MATLAB Adam Filion Application Engineer MathWorks

Data Analytics with MATLAB Adam Filion Application Engineer MathWorks Data Analytics with Adam Filion Application Engineer MathWorks 2015 The MathWorks, Inc. 1 Case Study: Day-Ahead Load Forecasting Goal: Implement a tool for easy and accurate computation of dayahead system

More information

Using SAS Enterprise Guide, SAS Enterprise Miner, and SAS Marketing Automation to Make a Collection Campaign Smarter

Using SAS Enterprise Guide, SAS Enterprise Miner, and SAS Marketing Automation to Make a Collection Campaign Smarter Paper 3503-2015 Using SAS Enterprise Guide, SAS Enterprise Miner, and SAS Marketing Automation to Make a Collection Campaign Smarter Darwin Amezquita, Andres Gonzalez, Paulo Fuentes DIRECTV ABSTRACT Companies

More information

A Study of Financial Distress Prediction based on Discernibility Matrix and ANN Xin-Zhong BAO 1,a,*, Xiu-Zhuan MENG 1, Hong-Yu FU 1

A Study of Financial Distress Prediction based on Discernibility Matrix and ANN Xin-Zhong BAO 1,a,*, Xiu-Zhuan MENG 1, Hong-Yu FU 1 International Conference on Management Science and Management Innovation (MSMI 2014) A Study of Financial Distress Prediction based on Discernibility Matrix and ANN Xin-Zhong BAO 1,a,*, Xiu-Zhuan MENG

More information

A 2-tuple Fuzzy Linguistic RFM Model and Its Implementation

A 2-tuple Fuzzy Linguistic RFM Model and Its Implementation Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 55 (2015 ) 1340 1347 Information Technology and Quantitative Management (ITQM 2015) A 2-tuple Fuzzy Linguistic RFM Model

More information

Prediction of Personalized Rating by Combining Bandwagon Effect and Social Group Opinion: using Hadoop-Spark Framework

Prediction of Personalized Rating by Combining Bandwagon Effect and Social Group Opinion: using Hadoop-Spark Framework Prediction of Personalized Rating by Combining Bandwagon Effect and Social Group Opinion: using Hadoop-Spark Framework Lu Sun 1, Kiejin Park 2 and Limei Peng 1 1 Department of Industrial Engineering, Ajou

More information

Cold-start Solution to Location-based Entity Shop. Recommender Systems Using Online Sales Records

Cold-start Solution to Location-based Entity Shop. Recommender Systems Using Online Sales Records Cold-start Solution to Location-based Entity Shop Recommender Systems Using Online Sales Records Yichen Yao 1, Zhongjie Li 2 1 Department of Engineering Mechanics, Tsinghua University, Beijing, China yaoyichen@aliyun.com

More information

Fraudulent Behavior Forecast in Telecom Industry Based on Data Mining Technology

Fraudulent Behavior Forecast in Telecom Industry Based on Data Mining Technology Fraudulent Behavior Forecast in Telecom Industry Based on Data Mining Technology Sen Wu Naidong Kang Liu Yang School of Economics and Management University of Science and Technology Beijing ABSTRACT Outlier

More information

CONNECTING CORPORATE GOVERNANCE TO COMPANIES PERFORMANCE BY ARTIFICIAL NEURAL NETWORKS

CONNECTING CORPORATE GOVERNANCE TO COMPANIES PERFORMANCE BY ARTIFICIAL NEURAL NETWORKS CONNECTING CORPORATE GOVERNANCE TO COMPANIES PERFORMANCE BY ARTIFICIAL NEURAL NETWORKS Darie MOLDOVAN, PhD * Mircea RUSU, PhD student ** Abstract The objective of this paper is to demonstrate the utility

More information

Management Science Letters

Management Science Letters Management Science Letters 1 (2011) 449 456 Contents lists available at GrowingScience Management Science Letters homepage: www.growingscience.com/msl Improving electronic customers' profile in recommender

More information

Checking and Analysing Customers Buying Behavior with Clustering Algorithm

Checking and Analysing Customers Buying Behavior with Clustering Algorithm Pal. Jour. V.16, I.3, No.2 2017, 486-492 Copyright 2017 by Palma Journal, All Rights Reserved Available online at: http://palmajournal.org/ Checking and Analysing Customers Buying Behavior with Clustering

More information

Financial Services: Maximize Revenue with Better Marketing Data. Marketing Data Solutions for the Financial Services Industry

Financial Services: Maximize Revenue with Better Marketing Data. Marketing Data Solutions for the Financial Services Industry Financial Services: Maximize Revenue with Better Marketing Data Marketing Data Solutions for the Financial Services Industry DataMentors, LLC April 2014 1 Financial Services: Maximize Revenue with Better

More information

NOVEL DATAMINING TECHNIQUE FOR ONLINE SHOPPING

NOVEL DATAMINING TECHNIQUE FOR ONLINE SHOPPING NOVEL DATAMINING TECHNIQUE FOR ONLINE SHOPPING D. Ravi 1, A. Dharshini 2, Keerthaneshwari 3, M. Naveen Kumar 4 1,2,3,4 CSE Department, Kathir College of Engineering Abstract: Opinion mining is a type of

More information

Top-down Forecasting Using a CRM Database Gino Rooney Tom Bauer

Top-down Forecasting Using a CRM Database Gino Rooney Tom Bauer Top-down Forecasting Using a CRM Database Gino Rooney Tom Bauer Abstract More often than not sales forecasting in modern companies is poorly implemented despite the wealth of data that is readily available

More information

Data Mining and Knowledge Discovery in Large Databases

Data Mining and Knowledge Discovery in Large Databases Outline We are drowning in data, but we are starving for knowledge Part 2: Clustering - Hierarchical Clustering - Divisive Clustering - Density based Clustering Data Mining and Knowledge Discovery in Large

More information

A Survey on Recommendation Techniques in E-Commerce

A Survey on Recommendation Techniques in E-Commerce A Survey on Recommendation Techniques in E-Commerce Namitha Ann Regi Post-Graduate Student Department of Computer Science and Engineering Karunya University, India P. Rebecca Sandra Assistant Professor

More information

RFM-BASED E-MARKETS SEGMENTATION USING SELF- ORGANIZING MAPS

RFM-BASED E-MARKETS SEGMENTATION USING SELF- ORGANIZING MAPS Pinnacle Research Journals 86 Vol. 3 Issue 2 December 20, ISSN 2278-0629, pp. 86-96 (Special Issue on Basic and Applied Sciences) RFM-BASED E-MARKETS SEGMENTATION USING SELF- ORGANIZING MAPS BAHRAM IZADI*,

More information

Study on the Application of Data Mining in Bioinformatics. Mingyang Yuan

Study on the Application of Data Mining in Bioinformatics. Mingyang Yuan International Conference on Mechatronics Engineering and Information Technology (ICMEIT 2016) Study on the Application of Mining in Bioinformatics Mingyang Yuan School of Science and Liberal Arts, New

More information

Profiling Methodology with reference to Customer Lifetime Value, Relationship, Satisfaction and Behavior Using Data Mining Techniques.

Profiling Methodology with reference to Customer Lifetime Value, Relationship, Satisfaction and Behavior Using Data Mining Techniques. Profiling Methodology with reference to Customer Lifetime Value, Relationship, Satisfaction and Behavior Using Data Mining Techniques Synopsis Submitted in partial fulfillment of the Degree of Doctor of

More information

Machine learning mechanisms in modern Omnichannel marketing and sales.

Machine learning mechanisms in modern Omnichannel marketing and sales. Machine learning mechanisms in modern Omnichannel marketing and sales. Currently, companies operating in retail must face a very competitive market. They very often set their goal at gaining a high number

More information

Research of the Social Media Data Analyzing Platform Based on Cloud Mining Yi-Tang ZENG, Yu-Feng ZHANG, Sheng CAO, Li LI, Cheng-Wei ZHANG *

Research of the Social Media Data Analyzing Platform Based on Cloud Mining Yi-Tang ZENG, Yu-Feng ZHANG, Sheng CAO, Li LI, Cheng-Wei ZHANG * 2016 3 rd International Conference on Social Science (ICSS 2016) ISBN: 978-1-60595-410-3 Research of the Social Media Data Analyzing Platform Based on Cloud Mining Yi-Tang ZENG, Yu-Feng ZHANG, Sheng CAO,

More information

Web Objects Based Energy Efficiency for Smart Home IoT Service Provisioning

Web Objects Based Energy Efficiency for Smart Home IoT Service Provisioning Web Objects Based Energy Efficiency for Smart Home IoT Service Provisioning Muhammad Golam Kibria *, Muhammad Aslam Jarwar, Sajjad Ali, Sunil Kumar and Ilyoung Chong Department of CICE, Hankuk University

More information

Mining Millions of Reviews: A Technique to Rank Products Based on Importance of Reviews

Mining Millions of Reviews: A Technique to Rank Products Based on Importance of Reviews Mining Millions of Reviews: A Technique to Rank Products Based on Importance of Reviews Kunpeng Zhang, Yu Cheng, Wei-keng Liao, Alok Choudhary Dept. of Electrical Engineering and Computer Science Center

More information

Analytics for Banks. September 19, 2017

Analytics for Banks. September 19, 2017 Analytics for Banks September 19, 2017 Outline About AlgoAnalytics Problems we can solve for banks Our experience Technology Page 2 About AlgoAnalytics Analytics Consultancy Work at the intersection of

More information

Marketing Data Solutions for the Financial Services Industry

Marketing Data Solutions for the Financial Services Industry Marketing Data Solutions for the Financial Services Industry Maximize your revenue with better data. Publication Date: July, 2015 www.datamentors.com info@datamentors.com 01. Maximize Revenue with Better

More information

An Implementation of genetic algorithm based feature selection approach over medical datasets

An Implementation of genetic algorithm based feature selection approach over medical datasets An Implementation of genetic algorithm based feature selection approach over medical s Dr. A. Shaik Abdul Khadir #1, K. Mohamed Amanullah #2 #1 Research Department of Computer Science, KhadirMohideen College,

More information

Chapter 1. marketing is all around us. Section 1.1 Marketing and the Marketing Concept. Section 1.2 The Importance of Marketing

Chapter 1. marketing is all around us. Section 1.1 Marketing and the Marketing Concept. Section 1.2 The Importance of Marketing Chapter 1 marketing is all around us Section 1.1 Marketing and the Marketing Concept Section 1.2 The Importance of Marketing Section 1.3 Fundamentals of Marketing Section 1.1 Marketing and the Marketing

More information

Customer Value: RFM and CLV

Customer Value: RFM and CLV Study Unit 1 Customer Value: RFM and CLV ANL 309 Business Analytics Applications Introduction Concept of customer value Recency-Frequency-Monetary y y Value (RFM) approach to calculate customer value Customer

More information

Data Analytics for Engineers

Data Analytics for Engineers Data Analytics for Engineers Will Wilson Application Engineer MathWorks 2016 The MathWorks, Inc. 1 Agenda Definition Common Challenges Case Study Wrap Up 2 What is Data Analytics? Data Analytics is the

More information

Case studies in Data Mining & Knowledge Discovery

Case studies in Data Mining & Knowledge Discovery Case studies in Data Mining & Knowledge Discovery Knowledge Discovery is a process Data Mining is just a step of a (potentially) complex sequence of tasks KDD Process Data Mining & Knowledge Discovery

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

Segmenting Online Customers Based on their Lifetime Value and RFM Model by Data Mining Techniques

Segmenting Online Customers Based on their Lifetime Value and RFM Model by Data Mining Techniques International Journal of Information Science and Management Segmenting Online Customers Based on their Lifetime Value and RFM Model by Data Mining Techniques Azarnoosh Ansari, PhD. Assistant Professor

More information

Survey of Behavioral Segmentation Methods

Survey of Behavioral Segmentation Methods Survey of Behavioral Segmentation Methods Written by Rhonda Carraway Petty Marketing Insights Data Scientist rpetty@mathnetix.com There is no magic rule or formula for deciding how to classify customers

More information

Informatics solutions for decision support regarding electricity consumption optimizing within smart grids

Informatics solutions for decision support regarding electricity consumption optimizing within smart grids BUCHAREST UNIVERSITY OF ECONOMIC STUDIES Doctoral School of Economic Informatics Informatics solutions for decision support regarding electricity consumption optimizing within smart grids SUMMARY OF DOCTORAL

More information

ERFM: HOW TO UNDERSTAND CUSTOMER ENGAGEMENT BETTER THAN EVER HOW THE NEW SCIENCE OF SEGMENTATION PROVIDES DEEP BEHAVIORAL INSIGHT

ERFM: HOW TO UNDERSTAND CUSTOMER ENGAGEMENT BETTER THAN EVER HOW THE NEW SCIENCE OF SEGMENTATION PROVIDES DEEP BEHAVIORAL INSIGHT ERFM: HOW TO UNDERSTAND CUSTOMER ENGAGEMENT BETTER THAN EVER HOW THE NEW SCIENCE OF SEGMENTATION PROVIDES DEEP BEHAVIORAL INSIGHT CONTENTS A new approach to customer engagement 3 What drives changes in

More information

Preface to the third edition Preface to the first edition Acknowledgments

Preface to the third edition Preface to the first edition Acknowledgments Contents Foreword Preface to the third edition Preface to the first edition Acknowledgments Part I PRELIMINARIES XXI XXIII XXVII XXIX CHAPTER 1 Introduction 3 1.1 What Is Business Analytics?................

More information

Retail Product Bundling A new approach

Retail Product Bundling A new approach Paper 1728-2018 Retail Product Bundling A new approach Bruno Nogueira Carlos, Youman Mind Over Data ABSTRACT Affinity analysis is referred to as Market Basket Analysis in retail and e-commerce outlets

More information

IBM SPSS Modeler Personal

IBM SPSS Modeler Personal IBM Modeler Personal Make better decisions with predictive intelligence from the desktop Highlights Helps you identify hidden patterns and trends in your data to predict and improve outcomes Enables you

More information

IT PROJECT DISTRIBUTION AUTOMATION

IT PROJECT DISTRIBUTION AUTOMATION IT PROJECT DISTRIBUTION AUTOMATION 1 Aniket Kale, 2 Ajay Sonune, 3 Om Awagan, 4 Sandeep Chavan, 5 Prof. Rupali Dalvi 1, 2,3,4,5 Department of Computer Engineering, Marathwada Mitra Mandal s College of

More information

Introduction. Powerful forces are reshaping the banking industry.

Introduction. Powerful forces are reshaping the banking industry. Introduction Powerful forces are reshaping the banking industry. Customer expectations, technological capabilities, regulatory requirements, demographics and economics are together creating an imperative

More information

Forecasting mobile games retention using Weka

Forecasting mobile games retention using Weka 22 Forecasting mobile games retention using Weka Forecasting mobile games retention using Weka Roxana Ioana STIRCU Bucharest University of Economic Studies roxana.stircu@gmail.com Abstract: In the actual

More information

ERFM: HOW TO UNDERSTAND CUSTOMER ENGAGEMENT BETTER THAN EVER HOW THE NEW SCIENCE OF SEGMENTATION PROVIDES DEEP BEHAVIORAL INSIGHT

ERFM: HOW TO UNDERSTAND CUSTOMER ENGAGEMENT BETTER THAN EVER HOW THE NEW SCIENCE OF SEGMENTATION PROVIDES DEEP BEHAVIORAL INSIGHT ERFM: HOW TO UNDERSTAND CUSTOMER ENGAGEMENT BETTER THAN EVER HOW THE NEW SCIENCE OF SEGMENTATION PROVIDES DEEP BEHAVIORAL INSIGHT CONTENTS A new approach to customer engagement 3 What drives changes in

More information

Segmenting Customer Bases in Personalization Applications Using Direct Grouping and Micro-Targeting Approaches

Segmenting Customer Bases in Personalization Applications Using Direct Grouping and Micro-Targeting Approaches Segmenting Customer Bases in Personalization Applications Using Direct Grouping and Micro-Targeting Approaches Alexander Tuzhilin Stern School of Business New York University (joint work with Tianyi Jiang)

More information

IBM SPSS Modeler Personal

IBM SPSS Modeler Personal IBM SPSS Modeler Personal Make better decisions with predictive intelligence from the desktop Highlights Helps you identify hidden patterns and trends in your data to predict and improve outcomes Enables

More information

Context-aware recommendation

Context-aware recommendation Context-aware recommendation Eirini Kolomvrezou, Hendrik Heuer Special Course in Computer and Information Science User Modelling & Recommender Systems Aalto University Context-aware recommendation 2 Recommendation

More information

Leveraging RFM in Marketing

Leveraging RFM in  Marketing WHITE PAPER Leveraging RFM in Email Marketing Email marketers should be leveraging the use of recency, frequency, monetary (RFM) analysis to uncover optimal segments and untapped opportunities within their

More information

Research Article Research on E-Commerce Platform-Based Personalized Recommendation Algorithm

Research Article Research on E-Commerce Platform-Based Personalized Recommendation Algorithm Applied Computational Intelligence and So Computing Volume 2016, Article ID 5160460, 7 pages http://dx.doi.org/.1155/2016/5160460 Research Article Research on E-Commerce Platform-Based Personalized Recommendation

More information

Enterprise Applications and Business Communication

Enterprise Applications and Business Communication Enterprise Applications and Business Communication Topics Covered BDIS Section 8.2 Customer Relationship Management and Enterprise Resource Planning Customer Relationship Management (CRM) Enterprise Resource

More information

Gene Expression Data Analysis

Gene Expression Data Analysis Gene Expression Data Analysis Bing Zhang Department of Biomedical Informatics Vanderbilt University bing.zhang@vanderbilt.edu BMIF 310, Fall 2009 Gene expression technologies (summary) Hybridization-based

More information

Chapter 6: Customer Analytics Part II

Chapter 6: Customer Analytics Part II Chapter 6: Customer Analytics Part II Overview Topics discussed: Strategic customer-based value metrics Popular customer selection strategies Techniques to evaluate alternative customer selection strategies

More information

Personalized Recommendation-based Partner Selection for SDN

Personalized Recommendation-based Partner Selection for SDN International Business Research; Vol. 5, No. 12; 2012 ISSN 1913-9004 E-ISSN 1913-9012 Published by Canadian Center of Science and Education Personalized Recommendation-based Partner Selection for SDN Ying

More information

DECISION SUPPORT SYSTEM FOR POTENTIAL SALES AREA OF PRODUCT MARKETING USING CLASSIFICATION AND CLUSTERING METHODS

DECISION SUPPORT SYSTEM FOR POTENTIAL SALES AREA OF PRODUCT MARKETING USING CLASSIFICATION AND CLUSTERING METHODS DECISION SUPPORT SYSTEM FOR POTENTIAL SALES AREA OF PRODUCT MARKETING USING CLASSIFICATION AND CLUSTERING METHODS Evasaria M. Sipayung, Cut Fiarni, Randy Tanudjaya Department of Information System, Harapan

More information

Chapter 9. Business Intelligence Systems

Chapter 9. Business Intelligence Systems Chapter 9 Business Intelligence Systems We Can Make the Bits Produce Any Report You Want, But You ve Got to Pay for It. Need to monitor patient workout data. Spending too many hours each day looking at

More information

The Accurate Marketing System Design Based on Data Mining Technology: A New Approach. ZENG Yuling 1, a

The Accurate Marketing System Design Based on Data Mining Technology: A New Approach. ZENG Yuling 1, a International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 2015) The Accurate Marketing System Design Based on Data Mining Technology: A New Approach ZENG Yuling 1,

More information

Chapter 13 Knowledge Discovery Systems: Systems That Create Knowledge

Chapter 13 Knowledge Discovery Systems: Systems That Create Knowledge Chapter 13 Knowledge Discovery Systems: Systems That Create Knowledge Becerra-Fernandez, et al. -- Knowledge Management 1/e -- 2007 Prentice Hall Chapter Objectives To explain how knowledge is discovered

More information

Management Science Letters

Management Science Letters Management Science Letters 2 (2012) 2923 2928 Contents lists available at GrowingScience Management Science Letters homepage: www.growingscience.com/msl An empirical study for ranking insurance firms using

More information

Predicting Purchase Behavior of E-commerce Customer, One-stage or Two-stage?

Predicting Purchase Behavior of E-commerce Customer, One-stage or Two-stage? 2016 International Conference on Artificial Intelligence and Computer Science (AICS 2016) ISBN: 978-1-60595-411-0 Predicting Purchase Behavior of E-commerce Customer, One-stage or Two-stage? Chen CHEN

More information

CHAPTER 3 RESEARCH METHODOLOGY. This chapter provides an overview of the methodology used in this research. The use

CHAPTER 3 RESEARCH METHODOLOGY. This chapter provides an overview of the methodology used in this research. The use CHAPTER 3 RESEARCH METHODOLOGY 3.1 INTRODUCTION This chapter provides an overview of the methodology used in this research. The use of appropriate methodology forms the basis for a research so that scientifically

More information

The usage of Big Data mechanisms and Artificial Intelligence Methods in modern Omnichannel marketing and sales

The usage of Big Data mechanisms and Artificial Intelligence Methods in modern Omnichannel marketing and sales The usage of Big Data mechanisms and Artificial Intelligence Methods in modern Omnichannel marketing and sales Today's IT service providers offer a large set of tools supporting sales and marketing activities

More information

SOFTWARE DEVELOPMENT PRODUCTIVITY FACTORS IN PC PLATFORM

SOFTWARE DEVELOPMENT PRODUCTIVITY FACTORS IN PC PLATFORM SOFTWARE DEVELOPMENT PRODUCTIVITY FACTORS IN PC PLATFORM Abbas Heiat, College of Business, Montana State University-Billings, Billings, MT 59101, 406-657-1627, aheiat@msubillings.edu ABSTRACT CRT and ANN

More information

A Typical Multichannel Forensics Project A CEO s Guide To Reducing Expenses And Increasing Profit

A Typical Multichannel Forensics Project A CEO s Guide To Reducing Expenses And Increasing Profit A Typical Multichannel Forensics Project A CEO s Guide To Reducing Expenses And Increasing Profit Kevin Hillstrom President, MineThatData kevinh@minethatdata.com 1 A Project Requested By A CEO Multichannel

More information

Management System of Distribution Transformer Loading

Management System of Distribution Transformer Loading Management System of Distribution Transformer Loading A. G. Leal, M.Sc J. A. Jardini, Ph.D. L. C. Magrini, Ph.D. S. U. Ahn, Ph.D. D. Battani Abstract - This paper presents an Integrated Management System

More information

Online advertising. A brief introduction to Ad-networks Prepared by: Anna Alikhani

Online advertising. A brief introduction to Ad-networks Prepared by: Anna Alikhani Online advertising A brief introduction to Ad-networks Prepared by: Anna Alikhani Ad Networking or Banner Dealing Business Overview in Iran It seems that the market is ruled with old dinosaurs, with the

More information

Forecasting Blood Donor Response Using Predictive Modelling Approach

Forecasting Blood Donor Response Using Predictive Modelling Approach Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 6.199 IJCSMC,

More information

enterprise professional expertise distilled

enterprise professional expertise distilled IBM Cognos TM1 Cookbook Build real world planning, budgeting, and forecasting solutions with a collection of over 60 simple but incredibly effective recipes An kit Garg [ PUBLISHING I I enterprise professional

More information

IJMT Volume 2, Issue 8 ISSN:

IJMT Volume 2, Issue 8 ISSN: A Study on Models of Marketing Intelligence V.V.Devi Prasad Kotni* Abstract: The successful business will be Customer-Driven rather than Product-Driven. Every day customers, competitors, suppliers, and

More information

Enterprise and Entrepreneurial Management. Module Leader : Steve McDonald Module Tutor : Dorothy Hawkins

Enterprise and Entrepreneurial Management. Module Leader : Steve McDonald Module Tutor : Dorothy Hawkins Enterprise and Entrepreneurial Management Module Leader : Steve McDonald Module Tutor : Dorothy Hawkins Enterprise and Entrepreneurial Management - MOD003477 Customers Market Research Aims of the lecture

More information

Web Customer Modeling for Automated Session Prioritization on High Traffic Sites

Web Customer Modeling for Automated Session Prioritization on High Traffic Sites Web Customer Modeling for Automated Session Prioritization on High Traffic Sites Nicolas Poggi 1, Toni Moreno 2,3, Josep Lluis Berral 1, Ricard Gavaldà 4, and Jordi Torres 1,2 1 Computer Architecture Department,

More information

This report is conducted to examine how H&M can more effectively and efficiently maximize

This report is conducted to examine how H&M can more effectively and efficiently maximize Executive Summary This report is conducted to examine how H&M can more effectively and efficiently maximize the profits from their current customer base. The stated objective of this research is to identify

More information

New Features in Enterprise Miner

New Features in Enterprise Miner New Features in Enterprise Miner Dr. John Brocklebank, SAS Institute Inc. Gerhard Held, SAS Institute EMEA New Features in Enterprise Miner Agenda! The Big Picture: Importance of analytics in today s Marketplace!

More information

George Orme. August 2016

George Orme. August 2016 George Orme August 2016 HBH Catalog / E Commerce Two Primary Channels 3 Major Seasons Channel Driven - Managed Retail: Co. & Franchise Marketing Communications Direct Mail - email - FSI Catalog - limited

More information

THE TAG GOVERNANCE FRAMEWORK

THE TAG GOVERNANCE FRAMEWORK THE TAG GOVERNANCE FRAMEWORK HOW TO GOVERN YOUR D I G I T A L A N A LY T I C S A N D MARKETING TAGS Plan Monitor Comply Validate Deploy INTRODUCTION I checked out your website. And what did I find? Broken

More information

IBM Cognos TM1. Highlights. IBM Software Business Analytics

IBM Cognos TM1. Highlights. IBM Software Business Analytics IBM Capabilities spanning personal, departmental and enterprise-wide planning and analysis, to improve alignment and drive dynamic decision-making throughout the organization Highlights A personal analytics

More information