Study on the Application Analysis and Future Development of Data Mining Technology

Size: px
Start display at page:

Download "Study on the Application Analysis and Future Development of Data Mining Technology"

Transcription

1 Study on the Application Analysis and Future Development of Data Mining Technology Ge ZHU 1, Feng LIN 2,* 1 Department of Information Science and Technology, Heilongjiang University, Harbin , China 2 Information and Network Construction Management Center, Heilongjiang University, Harbin, , China *Corresponding author(feng LIN, lf1861@163.com) Abstract Data mining technology is a new hot-spot in database research, which combines traditional data analysis technique with relatively sophisticated algorithms for dealing with mass data, exploring and analyzing new data type and processing old data type with new method. This article explains the background of data mining technology, neural network, decision tree, genetic algorithm and discusses the basic process of data mining based on various types of data, and finally pointing out the application field and future trend of data mining technology. Keywords: Data mining; Analysis technology; Support service 1. INTRODUCTION With the rapid development of the Internet and database technology, the huge mount of data was stored in the database, which makes difficult to find the needed information. The data mining technology is the exact method to solve this problem and to look for the needed data in mass data, thus can help company dig the valid data and reduce unnecessary expense. Recently, many companies have already adopted the data mining technology to identify the most valuable customer groups, and then revise their promotion strategy which aims to get higher return with lower investment. The data mining is also called data exploration, mining of data, which generally refers to the process of extracting the hidden, unknown, but potentially valuable information among large number of noisy, ambiguous, incomplete and random data. This article will firstly talk about the data mining analysis technique. 2. COMMONLY USED ANALYSIS TECHNOLOGY OF DATA MINING Generally speaking, according to the specific type of data and model, the more technology of data mining system has been used, the more reliable conclusion will be get. In terms of function, the analysis technology of data mining can be classified into following techniques: (1) Association Analysis Technique The purpose of association analysis is to dig out the correlation among the large amounts of data. Given a set of Item and a record collection, the association analysis is to know the correlation among Item through analyzing the characteristics of record collection. For example, 30% is the record including Item A, Item B and Item C, which also includes Item E and Item F, the 30% is referred to the credibility of rule for the record including Item A, Item B and Item C, which also includes Item E and Item F, and Item A, Item B and Item C are called the antithesis to Item E and Item F. This article will use a typical example of goods sale for easy discussion. The goods retailer keeps all the transaction record which includes transaction number, customer number and product number, etc. Now it has association analysis on customer s buying behavior, and the object of association analysis is a group of product of different goods type. The goods retailer saves the transaction record and forms a record collection for association analysis, each record, as shown in Table 1, is composed of transaction number, customer number, product number and date of every transaction. Table 1. Transaction Record Collection Transaction Number Customer Number Product Number Date T1 1 A,B,C 3/3/05 T2 2 A,C,D 4/3/05 T3 3 A,B,D 3/4/05 T4 4 A,C 4/4/05 T5 5 D 4/5/05 439

2 Before doing association analysis, it needs to preset two parameters: 1) the minimum degree of confidence, whose role is to filter out the possibility of smaller rules, and in this case, you can set a minimum confidence level of 0.2; 2) the minimum support, whose role is to represent the probability of occurrence of a specific rule, and the credibility value will be 0.2 based on the minimum confidence level. According to the above description, it can set rule as customer who buys product X will also buys product Y, and setting the confidence level as C for this rule, so doing support level as S. Using formula to obtain: C= (the transaction number of both purchase product X and product Y)/ (the transaction number of only purchase product X), S= (the transaction number of both purchase product X and product Y)/ (total transaction number). Using the data in Table 1, getting the confidence level C and support level S of each rule through the above formula, the result is shown in Table 2. By the first row of data in Table 2, it can be seen that the confidence level C of the customer who buys product A will also buys product B is 0.5, and the support level is 0.2. Thus the market staff will know that the customer who buys A oven will has 50% chances to buy the B. This usage is relatively simple for the ordinary market staff who will master it after some training, the results have a certain reference value. This method does not involve complex algorithm, but from which can understand the basic method and reference value of association analysis. Table 2. Record Form of Association Analysis Item 1 Item 2 confidence level C support level S A B A C A D B C A,B D A,C D (2)Sequential Pattern Analysis Technique The Sequential pattern analysis technique is also to dig out the relevance of large amounts of data, the purpose is somewhat similar to association analysis technique, but sequential pattern analysis focuses on the causal relationship of data mining. With the above examples of data and uses the customer number, date, product number to rebuild the table (see Table 3). Table 3. Classification by Timetable Customer Number date product number /3/05 A,B 3/4/05 C 4/5/05 D 3/3/05 A,C 3/4/05 A,B,C 3/3/05 A 3/4/05 B Similarly, it needs to preset the minimum support count S before doing the sequential pattern analysis. As in this example, presetting the minimum support count as 2. Sequential pattern mining is to find all the frequent sub sequences, that is, the occurrence frequency of the sub sequence in the sequence is not less than the minimum support count. Table 4. Record Form of Sequence Analysis Sequence Support Count B,C 2 B,D 2 As shown in the Table 4, we can know that the customer who buys the B, it is likely to buy C or D. Using sequential model to analyze the above data, the product retailer will find the potential way for shopping of the customers, for example, which product does the customer usually buy before purchasing the electromagnetic 440

3 oven, and then has the sales strategy for the product. The sequential model analysis technique can also be used in stock analysis, for example, it can find some regular pattern through sequential model analysis technique, in medical insurance industry it also has a good effect, the insurance company can use this new technique to predict the most common medical approach and then adjust the insurance policies. (3) Classification Analysis Technique The classification analysis technique needs to assume the record collection has a set of mark which needs to have the characteristics to distinguish from other categories. In preparation of classification analysis, it needs to define a mark for every record firstly, which means to classify the records according to mark when doing the record, then check out those records with marks, finally, describing the characteristics of those records with marks. The description method can be different, it can be explicit way, such ac directly define a set of rule or characteristic: and it can be implicit, such as the definition of a mathematical formula of a mapping method. Now, many classification model has started to adopt classification analysis technique to analyze and predict. For example, the database of major banks save the records of various customers, and have classification according to personal credit degree(namely the mark) which can be divided into: good, fair, poor, very poor, etc. This classification method is classification analysis technique. Banks can use classification analysis technique to give an explicit description of the credit rating as: the fair credit consumers generally refers to ones who have monthly income of 5000RMB, the age between 25 to 35, and mostly living in certain area, (4) Cluster Analysis Technique Clustering is the process of classifying the collection of physical or abstract objects and compose the multiple categories of similar objects. The input set of cluster analysis technique is a group of marked records, which is not classified, and the purpose is to divide the record collection reasonably according to specified rules, then adopting explicit or implicit rule to classify. Generally, cluster analysis technique can adopt various algorithms, so the same record collection may has different classification result, and the above classification analysis substantially applies to cluster analysis. In fact, the classification analysis technique and the cluster analysis technique is complementary in many aspects, such as, during the early data analysis, the analyst can label and classify the data according to experience or general rule, then analyze the data with classification analysis technique, getting a general description of each category, then using the description as a new classification rule to re-divide the data, thus can get a better division effect, and analyst can cycle use the two analysis techniques to obtain a satisfactory result. In terms of data mining system, sometimes it needs integrated utilization of four methods that described above. To take product sales as example, now it needs to have market position for a certain product, the data mining system may comprehensively use four methods: 1) using association analysis technique to sum up the product which is usually bought with the certain product; 2) using sequential analysis technique to find the customer group of purchasing the certain product, and summarize the sequence of shopping; 3) using classification analysis technique to sum up the shopping mode of the certain product according to the result of sequential analysis technique; 4) using the above shopping mode as the rule of cluster analysis technique, and adopting cluster analysis method to find the potential customer with the same shopping mode and having a promotion for the potential. 3. COMMONLY USED TECHNOLOGY OF DATA MINING (1) Neural Network Neural network is also known as connection model, which is the algorithm mathematical model of an intimation of animal nervous feature, and having distribution parallel information processing which is usually used to solve the classification and regression problems. Neural network is considered as a set of connected input or output unit, each of which is connected to a power. In the learning phase of neural network, people can adjust the weights of the neural network so that it can accurately predict the category number of samples for learning. (2) Decision Tree Decision tree has an extensive usage, now it can be used to judge the condition under which the value can be get with certain rule method. For example, when bank staff dealing with the loan, it needs to judge the risk of the loan applicant. The decision Tree is shown as Figure

4 Income>4000 0? Work Time>5 High Liability Low Risk High High Risk Figure 1. Decision Tree Risk of Loan Low Risk For example, bank employees can use the decision tree as shown in Figure 1 to decide whether granting or refusing the loan applicant, and using the size of loan to determine the loan risk. Such as income > 40,000 and high liability consumer will be treated as high risk, otherwise, "income <40,000" and "working time> 5 years," user will be considered as "low risk "and get the loan. The decision tree which used in data mining technology can be used in analyzing data and predicting, the decision tree which is shown in Figure 1 can be used to predict. The commonly used algorithms for predicting are: CHAID, Quest, CART and C5.0, etc. As long as scanning the data in database, then creating a decision tree which can easily handle cases with variable. But, the decision tree can not be too huge to effect the predicting result, setting the maximum layer of decision tree can be used to limit the size of decision tree, another method is to preset node which contains the smallest record, when the node contains the record that is smaller than the smallest record, it is the time to stop the division. Sometimes it can let decision tree to grow freely, then prune it to the desired size, but the accuracy of the decision tree need to be maintained during the pruning, When dealing with the node division of the decision tree, it can adopt greedy algorithm whose idea is: all division are based on sequential order, the rationality is not considered after division of each node, which means each division is dependent on the rationality of the last time division. Since the limitation of the greedy algorithm, it is seldom used. Relatively speaking, the decision tree is good at dealing with non-numerical data, such as bank information; while neural network is good at processing numerical data. (3) Genetic Algorithm Genetic algorithm borrows the biological evolution law(such as survival of the fittest, survival of the fittest genetic mechanism) and evolves into a kind of algorithm which has ability of random searching for the optimal solution. Its characteristic is to operate directly on the object without the limitation of deviation and continuous function, and having the inherently implicit parallelism and overall optimization capability; the adoption of probabilistic optimizing method can automatically obtain and optimize searching field, and have self-adapt adjustment of searching direction. The genetic algorithm consists of three basic operators: 1) reproduction (selection), namely choosing a more vital individual from the parental generation (former population), thus generating a new population; 2)crossing (recombination), which means to select two different parts of individual to have genetic crossing and recombination, thus generating new individual; 3) variation (mutation), i.e. having mutation treatment on some parts of some individuals, thus generating a new individual. Genetic algorithm can play a role in improving offspring, which has played a key role in optimizing calculation and classified machine learning 4. PROCESS OF DATA MINING Now to have a further discussion on basic steps of data mining process(as shown in Figure 2), data mining steps include:1) determine the research object, this determination process is the foundation of whole mining process; 2) establish the database, through the establishment, it can collect, describe, and select the data in advance; 3) analyze the data, it can use the commonly used analysis methods which introduced in this article (such as association analysis technique, sequential mode analysis technique, etc.) to analyze the data and classify the characteristic of the data; 4) prepare the data, which includes choosing the variables, recording and transforming the variables, etc. 5) establish the model, which needs to select suitable mining algorithm to mine on the transformed data; 6) evaluate and explain, which needs to evaluate the established model and has some necessary explanations; 7) implementation (knowledge assimilation), applying the analysis result to the similar system. 442

5 XML data textual data data cleaning data transformation data check XML database other data Figure 2. Data pre-treatment process 5. APPLICATION OF DATA MINING TECHNOLOGY 1) Data Mining Technology Aimed at Bio-medical and DNA Data Analysis At present, many bio-medical researches mainly focus on data analysis of DNA sequence, which has found causes of many diseases and disabilities genes. Using association analysis technology to identify the gene sequence which occurs simultaneously; by means of path analysis technique to find the gene sequence of disease at different stage; and it can also use visualization tools and genetic data analysis technique to display the complex structure and sequence of gene. 2) Data Mining Technology Aimed at Finance Banks and financial institutions all provides various kind of savings business, credit business, investment, financial service business and insurance business. Aimed at the characteristics of the business and data, there are several typical data mining techniques: 1. design and construct the database for the characteristic of multidimensional data; 2. Using loan repayment predicting technique and consumer credit policy analysis method to analyze data; 3. Having classification and cluster analysis on specified target market customers. 3) Application of Data Mining Technology on Retail Business Retail Business is the main field for the research and application of data mining, retail business has the accumulation of long-term sales data, such as the purchase record of customer, consumer, service record and goods purchase record, etc. The data mining of retail business can help sellers to identify the shopping behavior and buying mode of customer, as well as improving the service quality, increasing the goods sales ratio and reducing the cost The related data mining techniques are: design and construct database according to data mining technology; multidimensional analysis on sales, customers, goods, time and area; analysis of customer s shopping loyalty, etc. 6. FUTURE TREND OF DATA MINING TECHNOLOGY Since the variety of data, data mining task and data mining method, which gives many research direction of data mining technology, such as the application development of data mining technology; the data mining method with flexibility; data mining technology, database system and integration of Web database system; standardization of data mining language; visualized data mining tool; new mining technique for complicated data type; privacy protection of data mining process and information security, etc. 7. CONCLUSION Data mining technology uses artificial intelligence and XML-related technologies to analyze the data in certain database, in order to dig out its rule, which involves various analysis techniques, commonly used algorithms, and the application field of data mining technology is quiet extensive, the development potential is huge. ACKNOWLEDGMENTS This research is supported by Natural Science Foundation of Heilongjiang Province of China (No.F201432). References Brin S, Page L. The anatomy of a large-scale hypertextual Web search engine, International Journal of Approximate Reasoning, 1998, pp

6 Jianwu Yang, Songlin Wang. Extended VSM for XML document classification using frequent subtrees, Proceeding INEX'09 Proceedings of the Focused retrieval and evaluation, and 8th international conference on Initiative for the evaluation of XML retrieval.2010.pp Jiawei Han,Micheline Kamber, Data Mining Concepts and Techniques, Second Edition, China Machine Press, Xinfeng Lai, Changxuan Wan,Dexi Liu. XML Node Semantic Weight Model Based on VSM, Proceeding ICMECG '08 Proceedings of the 2008 International Conference on Management of e-commerce and e-government, 2008, pp Zuobing Xu, Ram Akella. Improving probabilistic information retrieval by modeling burstiness of words, Information Processing and Management: an International Journal.2010.pp

Analytical model A structure and process for analyzing a dataset. For example, a decision tree is a model for the classification of a dataset.

Analytical model A structure and process for analyzing a dataset. For example, a decision tree is a model for the classification of a dataset. Glossary of data mining terms: Accuracy Accuracy is an important factor in assessing the success of data mining. When applied to data, accuracy refers to the rate of correct values in the data. When applied

More information

COMP 465 Special Topics: Data Mining

COMP 465 Special Topics: Data Mining COMP 465 Special Topics: Data Mining Introduction & Course Overview 1 Course Page & Class Schedule http://cs.rhodes.edu/welshc/comp465_s15/ What s there? Course info Course schedule Lecture media (slides,

More information

Data Mining in the Application of E-Commerce Website

Data Mining in the Application of E-Commerce Website Data Mining in the Application of E-Commerce Website Gu Hongjiu ChongQing Industry Polytechnic College, 401120, China Abstract. With the development of computer technology and Internet technology, the

More information

Basic Data Mining Technique

Basic Data Mining Technique Basic Data Mining Technique What is classification? What is prediction? Supervised and Unsupervised Learning Decision trees Association rule K-nearest neighbor classifier Case-based reasoning Genetic algorithm

More information

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

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

More information

International Journal of Advance Engineering and Research Development. A Survey on Data Mining Methods and its Applications

International Journal of Advance Engineering and Research Development. A Survey on Data Mining Methods and its Applications Scientific Journal of Impact Factor (SJIF): 4.72 International Journal of Advance Engineering and Research Development Volume 5, Issue 01, January -2018 e-issn (O): 2348-4470 p-issn (P): 2348-6406 A Survey

More information

This tutorial has been prepared for computer science graduates to help them understand the basic-to-advanced concepts related to data mining.

This tutorial has been prepared for computer science graduates to help them understand the basic-to-advanced concepts related to data mining. About the Tutorial Data Mining is defined as the procedure of extracting information from huge sets of data. In other words, we can say that data mining is mining knowledge from data. The tutorial starts

More information

The Establishment of Large Data Mining Platform Based on Cloud Computing. Wei CAI

The Establishment of Large Data Mining Platform Based on Cloud Computing. Wei CAI 2017 International Conference on Electronic, Control, Automation and Mechanical Engineering (ECAME 2017) ISBN: 978-1-60595-523-0 The Establishment of Large Data Mining Platform Based on Cloud Computing

More information

Chapter 28. Outline. Definitions of Data Mining. Data Mining Concepts

Chapter 28. Outline. Definitions of Data Mining. Data Mining Concepts Chapter 28 Data Mining Concepts Outline Data Mining Data Warehousing Knowledge Discovery in Databases (KDD) Goals of Data Mining and Knowledge Discovery Association Rules Additional Data Mining Algorithms

More information

Yunfeng Zhang 1, Huan Wang 2, Jie Zhu 1 1 Computer Science & Engineering Department, North China Institute of Aerospace

Yunfeng Zhang 1, Huan Wang 2, Jie Zhu 1 1 Computer Science & Engineering Department, North China Institute of Aerospace [Type text] [Type text] [Type text] ISSN : 0974-7435 Volume 10 Issue 20 BioTechnology 2014 An Indian Journal FULL PAPER BTAIJ, 10(20), 2014 [12526-12531] Exploration on the data mining system construction

More information

Lecture Topic Projects 1 Intro, schedule, and logistics 2 Data Science components and tasks 3 Data types Project #1 out 4 Introduction to R,

Lecture Topic Projects 1 Intro, schedule, and logistics 2 Data Science components and tasks 3 Data types Project #1 out 4 Introduction to R, Lecture Topic Projects 1 Intro, schedule, and logistics 2 Data Science components and tasks 3 Data types Project #1 out 4 Introduction to R, statistics foundations 5 Introduction to D3, visual analytics

More information

Multisource Remote Sensing Data Mining System Construction in Cloud Computing Environment Dong YinDi 1, Liu ChengJun 1

Multisource Remote Sensing Data Mining System Construction in Cloud Computing Environment Dong YinDi 1, Liu ChengJun 1 4th International Conference on Computer, Mechatronics, Control and Electronic Engineering (ICCMCEE 2015) Multisource Remote Sensing Data Mining System Construction in Cloud Computing Environment Dong

More information

Data warehouse and Data Mining

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

More information

The k-means Algorithm and Genetic Algorithm

The k-means Algorithm and Genetic Algorithm The k-means Algorithm and Genetic Algorithm k-means algorithm Genetic algorithm Rough set approach Fuzzy set approaches Chapter 8 2 The K-Means Algorithm The K-Means algorithm is a simple yet effective

More information

Data Mining Concepts

Data Mining Concepts Data Mining Concepts Outline Data Mining Data Warehousing Knowledge Discovery in Databases (KDD) Goals of Data Mining and Knowledge Discovery Association Rules Additional Data Mining Algorithms Sequential

More information

Applications and Trends in Data Mining

Applications and Trends in Data Mining Applications and Trends in Data Mining Data mining applications Data mining system products and research prototypes Additional themes on data mining Social impacts of data mining Trends in data mining

More information

Understanding Rule Behavior through Apriori Algorithm over Social Network Data

Understanding Rule Behavior through Apriori Algorithm over Social Network Data Global Journal of Computer Science and Technology Volume 12 Issue 10 Version 1.0 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals Inc. (USA) Online ISSN: 0975-4172

More information

Design and Realization of Data Mining System based on Web HE Defu1, a

Design and Realization of Data Mining System based on Web HE Defu1, a 4th International Conference on Machinery, Materials and Computing Technology (ICMMCT 2016) Design and Realization of Data Mining System based on Web HE Defu1, a 1 Department of Quartermaster, Wuhan Economics

More information

Chapter 6: Basic Concepts: Association Rules. Basic Concepts: Frequent Patterns. (absolute) support, or, support. (relative) support, s, is the

Chapter 6: Basic Concepts: Association Rules. Basic Concepts: Frequent Patterns. (absolute) support, or, support. (relative) support, s, is the Chapter 6: What Is Frequent ent Pattern Analysis? Frequent pattern: a pattern (a set of items, subsequences, substructures, etc) that occurs frequently in a data set frequent itemsets and association rule

More information

Research and Application of E-Commerce Recommendation System Based on Association Rules Algorithm

Research and Application of E-Commerce Recommendation System Based on Association Rules Algorithm Research and Application of E-Commerce Recommendation System Based on Association Rules Algorithm Qingting Zhu 1*, Haifeng Lu 2 and Xinliang Xu 3 1 School of Computer Science and Software Engineering,

More information

Clustering Analysis based on Data Mining Applications Xuedong Fan

Clustering Analysis based on Data Mining Applications Xuedong Fan Applied Mechanics and Materials Online: 203-02-3 ISSN: 662-7482, Vols. 303-306, pp 026-029 doi:0.4028/www.scientific.net/amm.303-306.026 203 Trans Tech Publications, Switzerland Clustering Analysis based

More information

Knowledge Discovery and Data Mining

Knowledge Discovery and Data Mining Knowledge Discovery and Data Mining Unit # 1 1 Acknowledgement Several Slides in this presentation are taken from course slides provided by Han and Kimber (Data Mining Concepts and Techniques) and Tan,

More information

Review Paper onbuilding Prediction based model for cloud-based data mining

Review Paper onbuilding Prediction based model for cloud-based data mining Review Paper onbuilding Prediction based model for cloud-based data mining Er. Spinder kaur 1,Dr. Sandeep Kautish 2 1 M.Tech Scholar, 2 Assistant Professor ABSTRACT University of Computer Application Guru

More information

Data Mining. Ryan Benton Center for Advanced Computer Studies University of Louisiana at Lafayette Lafayette, La., USA.

Data Mining. Ryan Benton Center for Advanced Computer Studies University of Louisiana at Lafayette Lafayette, La., USA. Data Mining Ryan Benton Center for Advanced Computer Studies University of Louisiana at Lafayette Lafayette, La., USA January 13, 2011 Important Note! This presentation was obtained from Dr. Vijay Raghavan

More information

Chapter 4: Mining Frequent Patterns, Associations and Correlations

Chapter 4: Mining Frequent Patterns, Associations and Correlations Chapter 4: Mining Frequent Patterns, Associations and Correlations 4.1 Basic Concepts 4.2 Frequent Itemset Mining Methods 4.3 Which Patterns Are Interesting? Pattern Evaluation Methods 4.4 Summary Frequent

More information

Research on Applications of Data Mining in Electronic Commerce. Xiuping YANG 1, a

Research on Applications of Data Mining in Electronic Commerce. Xiuping YANG 1, a International Conference on Education Technology, Management and Humanities Science (ETMHS 2015) Research on Applications of Data Mining in Electronic Commerce Xiuping YANG 1, a 1 Computer Science Department,

More information

Research on Data Mining and Statistical Analysis Xiaoyao Lu1, a

Research on Data Mining and Statistical Analysis Xiaoyao Lu1, a 6th International Conference on Machinery, Materials, Environment, Biotechnology and Computer (MMEBC 2016) Research on Data Mining and Statistical Analysis Xiaoyao Lu1, a 1 School of Statistics and Mathematics

More information

Preprocessing of Stream Data using Attribute Selection based on Survival of the Fittest

Preprocessing of Stream Data using Attribute Selection based on Survival of the Fittest Preprocessing of Stream Data using Attribute Selection based on Survival of the Fittest Bhakti V. Gavali 1, Prof. Vivekanand Reddy 2 1 Department of Computer Science and Engineering, Visvesvaraya Technological

More information

Web Data mining-a Research area in Web usage mining

Web Data mining-a Research area in Web usage mining IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 13, Issue 1 (Jul. - Aug. 2013), PP 22-26 Web Data mining-a Research area in Web usage mining 1 V.S.Thiyagarajan,

More information

CS570 Introduction to Data Mining

CS570 Introduction to Data Mining CS570 Introduction to Data Mining Frequent Pattern Mining and Association Analysis Cengiz Gunay Partial slide credits: Li Xiong, Jiawei Han and Micheline Kamber George Kollios 1 Mining Frequent Patterns,

More information

Data Mining Technology Based on Bayesian Network Structure Applied in Learning

Data Mining Technology Based on Bayesian Network Structure Applied in Learning , pp.67-71 http://dx.doi.org/10.14257/astl.2016.137.12 Data Mining Technology Based on Bayesian Network Structure Applied in Learning Chunhua Wang, Dong Han College of Information Engineering, Huanghuai

More information

An Improved Apriori Algorithm for Association Rules

An Improved Apriori Algorithm for Association Rules Research article An Improved Apriori Algorithm for Association Rules Hassan M. Najadat 1, Mohammed Al-Maolegi 2, Bassam Arkok 3 Computer Science, Jordan University of Science and Technology, Irbid, Jordan

More information

Data Mining and Warehousing

Data Mining and Warehousing Data Mining and Warehousing Sangeetha K V I st MCA Adhiyamaan College of Engineering, Hosur-635109. E-mail:veerasangee1989@gmail.com Rajeshwari P I st MCA Adhiyamaan College of Engineering, Hosur-635109.

More information

Deriving Trading Rules Using Gene Expression Programming

Deriving Trading Rules Using Gene Expression Programming 22 Informatica Economică vol. 15, no. 1/2011 Deriving Trading Rules Using Gene Expression Programming Adrian VISOIU Academy of Economic Studies Bucharest - Romania Economic Informatics Department - collaborator

More information

DATA MINING AND WAREHOUSING

DATA MINING AND WAREHOUSING DATA MINING AND WAREHOUSING Qno Question Answer 1 Define data warehouse? Data warehouse is a subject oriented, integrated, time-variant, and nonvolatile collection of data that supports management's decision-making

More information

Parametric Comparisons of Classification Techniques in Data Mining Applications

Parametric Comparisons of Classification Techniques in Data Mining Applications Parametric Comparisons of Clas Techniques in Data Mining Applications Geeta Kashyap 1, Ekta Chauhan 2 1 Student of Masters of Technology, 2 Assistant Professor, Department of Computer Science and Engineering,

More information

Data Mining and Data Warehousing Introduction to Data Mining

Data Mining and Data Warehousing Introduction to Data Mining Data Mining and Data Warehousing Introduction to Data Mining Quiz Easy Q1. Which of the following is a data warehouse? a. Can be updated by end users. b. Contains numerous naming conventions and formats.

More information

Introduction to Data Mining S L I D E S B Y : S H R E E J A S W A L

Introduction to Data Mining S L I D E S B Y : S H R E E J A S W A L Introduction to Data Mining S L I D E S B Y : S H R E E J A S W A L Books 2 Which Chapter from which Text Book? Chapter 1: Introduction from Han, Kamber, "Data Mining Concepts and Techniques", Morgan Kaufmann

More information

CS423: Data Mining. Introduction. Jakramate Bootkrajang. Department of Computer Science Chiang Mai University

CS423: Data Mining. Introduction. Jakramate Bootkrajang. Department of Computer Science Chiang Mai University CS423: Data Mining Introduction Jakramate Bootkrajang Department of Computer Science Chiang Mai University Jakramate Bootkrajang CS423: Data Mining 1 / 29 Quote of the day Never memorize something that

More information

Thanks to the advances of data processing technologies, a lot of data can be collected and stored in databases efficiently New challenges: with a

Thanks to the advances of data processing technologies, a lot of data can be collected and stored in databases efficiently New challenges: with a Data Mining and Information Retrieval Introduction to Data Mining Why Data Mining? Thanks to the advances of data processing technologies, a lot of data can be collected and stored in databases efficiently

More information

Knowledge Discovery in Data Bases

Knowledge Discovery in Data Bases Knowledge Discovery in Data Bases Chien-Chung Chan Department of CS University of Akron Akron, OH 44325-4003 2/24/99 1 Why KDD? We are drowning in information, but starving for knowledge John Naisbett

More information

RETRACTED ARTICLE. Web-Based Data Mining in System Design and Implementation. Open Access. Jianhu Gong 1* and Jianzhi Gong 2

RETRACTED ARTICLE. Web-Based Data Mining in System Design and Implementation. Open Access. Jianhu Gong 1* and Jianzhi Gong 2 Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2014, 6, 1907-1911 1907 Web-Based Data Mining in System Design and Implementation Open Access Jianhu

More information

Evolving SQL Queries for Data Mining

Evolving SQL Queries for Data Mining Evolving SQL Queries for Data Mining Majid Salim and Xin Yao School of Computer Science, The University of Birmingham Edgbaston, Birmingham B15 2TT, UK {msc30mms,x.yao}@cs.bham.ac.uk Abstract. This paper

More information

Data Mining. Chapter 1: Introduction. Adapted from materials by Jiawei Han, Micheline Kamber, and Jian Pei

Data Mining. Chapter 1: Introduction. Adapted from materials by Jiawei Han, Micheline Kamber, and Jian Pei Data Mining Chapter 1: Introduction Adapted from materials by Jiawei Han, Micheline Kamber, and Jian Pei 1 Any Question? Just Ask 3 Chapter 1. Introduction Why Data Mining? What Is Data Mining? A Multi-Dimensional

More information

D B M G Data Base and Data Mining Group of Politecnico di Torino

D B M G Data Base and Data Mining Group of Politecnico di Torino DataBase and Data Mining Group of Data mining fundamentals Data Base and Data Mining Group of Data analysis Most companies own huge databases containing operational data textual documents experiment results

More information

Chapter 4: Association analysis:

Chapter 4: Association analysis: Chapter 4: Association analysis: 4.1 Introduction: Many business enterprises accumulate large quantities of data from their day-to-day operations, huge amounts of customer purchase data are collected daily

More information

Classification and Optimization using RF and Genetic Algorithm

Classification and Optimization using RF and Genetic Algorithm International Journal of Management, IT & Engineering Vol. 8 Issue 4, April 2018, ISSN: 2249-0558 Impact Factor: 7.119 Journal Homepage: Double-Blind Peer Reviewed Refereed Open Access International Journal

More information

A Study on Mining of Frequent Subsequences and Sequential Pattern Search- Searching Sequence Pattern by Subset Partition

A Study on Mining of Frequent Subsequences and Sequential Pattern Search- Searching Sequence Pattern by Subset Partition A Study on Mining of Frequent Subsequences and Sequential Pattern Search- Searching Sequence Pattern by Subset Partition S.Vigneswaran 1, M.Yashothai 2 1 Research Scholar (SRF), Anna University, Chennai.

More information

Introduction to Artificial Intelligence

Introduction to Artificial Intelligence Introduction to Artificial Intelligence COMP307 Evolutionary Computing 3: Genetic Programming for Regression and Classification Yi Mei yi.mei@ecs.vuw.ac.nz 1 Outline Statistical parameter regression Symbolic

More information

AN IMPROVISED FREQUENT PATTERN TREE BASED ASSOCIATION RULE MINING TECHNIQUE WITH MINING FREQUENT ITEM SETS ALGORITHM AND A MODIFIED HEADER TABLE

AN IMPROVISED FREQUENT PATTERN TREE BASED ASSOCIATION RULE MINING TECHNIQUE WITH MINING FREQUENT ITEM SETS ALGORITHM AND A MODIFIED HEADER TABLE AN IMPROVISED FREQUENT PATTERN TREE BASED ASSOCIATION RULE MINING TECHNIQUE WITH MINING FREQUENT ITEM SETS ALGORITHM AND A MODIFIED HEADER TABLE Vandit Agarwal 1, Mandhani Kushal 2 and Preetham Kumar 3

More information

CMPUT 391 Database Management Systems. Data Mining. Textbook: Chapter (without 17.10)

CMPUT 391 Database Management Systems. Data Mining. Textbook: Chapter (without 17.10) CMPUT 391 Database Management Systems Data Mining Textbook: Chapter 17.7-17.11 (without 17.10) University of Alberta 1 Overview Motivation KDD and Data Mining Association Rules Clustering Classification

More information

DATA WAREHOUSING AND MINING UNIT-V TWO MARK QUESTIONS WITH ANSWERS

DATA WAREHOUSING AND MINING UNIT-V TWO MARK QUESTIONS WITH ANSWERS DATA WAREHOUSING AND MINING UNIT-V TWO MARK QUESTIONS WITH ANSWERS 1. NAME SOME SPECIFIC APPLICATION ORIENTED DATABASES. Spatial databases, Time-series databases, Text databases and multimedia databases.

More information

Open Access Research on the Prediction Model of Material Cost Based on Data Mining

Open Access Research on the Prediction Model of Material Cost Based on Data Mining Send Orders for Reprints to reprints@benthamscience.ae 1062 The Open Mechanical Engineering Journal, 2015, 9, 1062-1066 Open Access Research on the Prediction Model of Material Cost Based on Data Mining

More information

Analysis on the technology improvement of the library network information retrieval efficiency

Analysis on the technology improvement of the library network information retrieval efficiency Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(6):2198-2202 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Analysis on the technology improvement of the

More information

Winter Semester 2009/10 Free University of Bozen, Bolzano

Winter Semester 2009/10 Free University of Bozen, Bolzano Data Warehousing and Data Mining Winter Semester 2009/10 Free University of Bozen, Bolzano DW Lecturer: Johann Gamper gamper@inf.unibz.it DM Lecturer: Mouna Kacimi mouna.kacimi@unibz.it http://www.inf.unibz.it/dis/teaching/dwdm/index.html

More information

Data warehouses Decision support The multidimensional model OLAP queries

Data warehouses Decision support The multidimensional model OLAP queries Data warehouses Decision support The multidimensional model OLAP queries Traditional DBMSs are used by organizations for maintaining data to record day to day operations On-line Transaction Processing

More information

Association Rule Mining. Entscheidungsunterstützungssysteme

Association Rule Mining. Entscheidungsunterstützungssysteme Association Rule Mining Entscheidungsunterstützungssysteme Frequent Pattern Analysis Frequent pattern: a pattern (a set of items, subsequences, substructures, etc.) that occurs frequently in a data set

More information

Keywords Fuzzy, Set Theory, KDD, Data Base, Transformed Database.

Keywords Fuzzy, Set Theory, KDD, Data Base, Transformed Database. Volume 6, Issue 5, May 016 ISSN: 77 18X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Fuzzy Logic in Online

More information

Evolutionary Algorithms. CS Evolutionary Algorithms 1

Evolutionary Algorithms. CS Evolutionary Algorithms 1 Evolutionary Algorithms CS 478 - Evolutionary Algorithms 1 Evolutionary Computation/Algorithms Genetic Algorithms l Simulate natural evolution of structures via selection and reproduction, based on performance

More information

Data Mining. Vera Goebel. Department of Informatics, University of Oslo

Data Mining. Vera Goebel. Department of Informatics, University of Oslo Data Mining Vera Goebel Department of Informatics, University of Oslo 2012 1 Lecture Contents Knowledge Discovery in Databases (KDD) Definition and Applications OLAP Architectures for OLAP and KDD KDD

More information

Introduction to Data Mining and Data Analytics

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

More information

Prediction of traffic flow based on the EMD and wavelet neural network Teng Feng 1,a,Xiaohong Wang 1,b,Yunlai He 1,c

Prediction of traffic flow based on the EMD and wavelet neural network Teng Feng 1,a,Xiaohong Wang 1,b,Yunlai He 1,c 2nd International Conference on Electrical, Computer Engineering and Electronics (ICECEE 215) Prediction of traffic flow based on the EMD and wavelet neural network Teng Feng 1,a,Xiaohong Wang 1,b,Yunlai

More information

Computers Are Your Future

Computers Are Your Future Computers Are Your Future Twelfth Edition Chapter 12: Databases and Information Systems Copyright 2012 Pearson Education, Inc. Publishing as Prentice Hall 1 Databases and Information Systems Copyright

More information

A SURVEY OF DATA MINING & ITS APPLICATIONS

A SURVEY OF DATA MINING & ITS APPLICATIONS A SURVEY OF DATA MINING & ITS APPLICATIONS Pankaj jain M.Tech Student, Computer Science Siddhi Vinayak College of Science & Hr.Education, Alwar (Rajasthan) Abstract- Data mining consists of evolving set

More information

BP Neural Network Based On Genetic Algorithm Applied In Text Classification

BP Neural Network Based On Genetic Algorithm Applied In Text Classification 20 International Conference on Information Management and Engineering (ICIME 20) IPCSIT vol. 52 (202) (202) IACSIT Press, Singapore DOI: 0.7763/IPCSIT.202.V52.75 BP Neural Network Based On Genetic Algorithm

More information

Data Mining. Introduction. Hamid Beigy. Sharif University of Technology. Fall 1395

Data Mining. Introduction. Hamid Beigy. Sharif University of Technology. Fall 1395 Data Mining Introduction Hamid Beigy Sharif University of Technology Fall 1395 Hamid Beigy (Sharif University of Technology) Data Mining Fall 1395 1 / 21 Table of contents 1 Introduction 2 Data mining

More information

ISSN: (Online) Volume 3, Issue 9, September 2015 International Journal of Advance Research in Computer Science and Management Studies

ISSN: (Online) Volume 3, Issue 9, September 2015 International Journal of Advance Research in Computer Science and Management Studies ISSN: 2321-7782 (Online) Volume 3, Issue 9, September 2015 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online

More information

Data mining fundamentals

Data mining fundamentals Data mining fundamentals Elena Baralis Politecnico di Torino Data analysis Most companies own huge bases containing operational textual documents experiment results These bases are a potential source of

More information

Gurpreet Kaur 1, Naveen Aggarwal 2 1,2

Gurpreet Kaur 1, Naveen Aggarwal 2 1,2 Association Rule Mining in XML databases: Performance Evaluation and Analysis Gurpreet Kaur 1, Naveen Aggarwal 2 1,2 Department of Computer Science & Engineering, UIET Panjab University Chandigarh. E-mail

More information

Chapter 2. Related Work

Chapter 2. Related Work Chapter 2 Related Work There are three areas of research highly related to our exploration in this dissertation, namely sequential pattern mining, multiple alignment, and approximate frequent pattern mining.

More information

A Novel method for Frequent Pattern Mining

A Novel method for Frequent Pattern Mining A Novel method for Frequent Pattern Mining K.Rajeswari #1, Dr.V.Vaithiyanathan *2 # Associate Professor, PCCOE & Ph.D Research Scholar SASTRA University, Tanjore, India 1 raji.pccoe@gmail.com * Associate

More information

An Application of Genetic Algorithm for Auto-body Panel Die-design Case Library Based on Grid

An Application of Genetic Algorithm for Auto-body Panel Die-design Case Library Based on Grid An Application of Genetic Algorithm for Auto-body Panel Die-design Case Library Based on Grid Demin Wang 2, Hong Zhu 1, and Xin Liu 2 1 College of Computer Science and Technology, Jilin University, Changchun

More information

Introduction to Data Mining

Introduction to Data Mining Introduction to JULY 2011 Afsaneh Yazdani What motivated? Wide availability of huge amounts of data and the imminent need for turning such data into useful information and knowledge What motivated? Data

More information

Web Usage Mining: A Research Area in Web Mining

Web Usage Mining: A Research Area in Web Mining Web Usage Mining: A Research Area in Web Mining Rajni Pamnani, Pramila Chawan Department of computer technology, VJTI University, Mumbai Abstract Web usage mining is a main research area in Web mining

More information

International Journal of Scientific Research & Engineering Trends Volume 4, Issue 6, Nov-Dec-2018, ISSN (Online): X

International Journal of Scientific Research & Engineering Trends Volume 4, Issue 6, Nov-Dec-2018, ISSN (Online): X Analysis about Classification Techniques on Categorical Data in Data Mining Assistant Professor P. Meena Department of Computer Science Adhiyaman Arts and Science College for Women Uthangarai, Krishnagiri,

More information

Landslide Monitoring Point Optimization. Deployment Based on Fuzzy Cluster Analysis.

Landslide Monitoring Point Optimization. Deployment Based on Fuzzy Cluster Analysis. Journal of Geoscience and Environment Protection, 2017, 5, 118-122 http://www.scirp.org/journal/gep ISSN Online: 2327-4344 ISSN Print: 2327-4336 Landslide Monitoring Point Optimization Deployment Based

More information

Database and Knowledge-Base Systems: Data Mining. Martin Ester

Database and Knowledge-Base Systems: Data Mining. Martin Ester Database and Knowledge-Base Systems: Data Mining Martin Ester Simon Fraser University School of Computing Science Graduate Course Spring 2006 CMPT 843, SFU, Martin Ester, 1-06 1 Introduction [Fayyad, Piatetsky-Shapiro

More information

Data Mining An Overview ITEV, F /18

Data Mining An Overview ITEV, F /18 Data Mining An Overview ITEV, F-2008 1/18 ITEV, F-2008 2/18 What is Data Mining?? ITEV, F-2008 2/18 What is Data Mining?? ITEV, F-2008 2/18 What is Data Mining?! ITEV, F-2008 3/18 What is Data Mining?

More information

Data Mining. Introduction. Hamid Beigy. Sharif University of Technology. Fall 1394

Data Mining. Introduction. Hamid Beigy. Sharif University of Technology. Fall 1394 Data Mining Introduction Hamid Beigy Sharif University of Technology Fall 1394 Hamid Beigy (Sharif University of Technology) Data Mining Fall 1394 1 / 20 Table of contents 1 Introduction 2 Data mining

More information

1. Introduction. 2. Motivation and Problem Definition. Volume 8 Issue 2, February Susmita Mohapatra

1. Introduction. 2. Motivation and Problem Definition. Volume 8 Issue 2, February Susmita Mohapatra Pattern Recall Analysis of the Hopfield Neural Network with a Genetic Algorithm Susmita Mohapatra Department of Computer Science, Utkal University, India Abstract: This paper is focused on the implementation

More information

Information mining and information retrieval : methods and applications

Information mining and information retrieval : methods and applications Information mining and information retrieval : methods and applications J. Mothe, C. Chrisment Institut de Recherche en Informatique de Toulouse Université Paul Sabatier, 118 Route de Narbonne, 31062 Toulouse

More information

CS377: Database Systems Data Warehouse and Data Mining. Li Xiong Department of Mathematics and Computer Science Emory University

CS377: Database Systems Data Warehouse and Data Mining. Li Xiong Department of Mathematics and Computer Science Emory University CS377: Database Systems Data Warehouse and Data Mining Li Xiong Department of Mathematics and Computer Science Emory University 1 1960s: Evolution of Database Technology Data collection, database creation,

More information

Volume 3, Issue 9, September 2015 International Journal of Advance Research in Computer Science and Management Studies

Volume 3, Issue 9, September 2015 International Journal of Advance Research in Computer Science and Management Studies Volume 3, Issue 9, September 2015 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online at: www.ijarcsms.com

More information

Scheme of Big-Data Supported Interactive Evolutionary Computation

Scheme of Big-Data Supported Interactive Evolutionary Computation 2017 2nd International Conference on Information Technology and Management Engineering (ITME 2017) ISBN: 978-1-60595-415-8 Scheme of Big-Data Supported Interactive Evolutionary Computation Guo-sheng HAO

More information

An Indian Journal FULL PAPER. Trade Science Inc. Research on data mining clustering algorithm in cloud computing environments ABSTRACT KEYWORDS

An Indian Journal FULL PAPER. Trade Science Inc. Research on data mining clustering algorithm in cloud computing environments ABSTRACT KEYWORDS [Type text] [Type text] [Type text] ISSN : 0974-7435 Volume 10 Issue 17 BioTechnology 2014 An Indian Journal FULL PAPER BTAIJ, 10(17), 2014 [9562-9566] Research on data mining clustering algorithm in cloud

More information

CHAPTER 5 WEIGHTED SUPPORT ASSOCIATION RULE MINING USING CLOSED ITEMSET LATTICES IN PARALLEL

CHAPTER 5 WEIGHTED SUPPORT ASSOCIATION RULE MINING USING CLOSED ITEMSET LATTICES IN PARALLEL 68 CHAPTER 5 WEIGHTED SUPPORT ASSOCIATION RULE MINING USING CLOSED ITEMSET LATTICES IN PARALLEL 5.1 INTRODUCTION During recent years, one of the vibrant research topics is Association rule discovery. This

More information

Case-Based Reasoning

Case-Based Reasoning 0/0/ Case-Based Reasoning In this lecture, we turn to another popular form of reasoning system: case based reasoning (CBR) Unlike Rule-based systems and Fuzzy Logic, CBR does not use any rules or logical

More information

ONLINE INDEXING FOR DATABASES USING QUERY WORKLOADS

ONLINE INDEXING FOR DATABASES USING QUERY WORKLOADS International Journal of Computer Science and Communication Vol. 2, No. 2, July-December 2011, pp. 427-433 ONLINE INDEXING FOR DATABASES USING QUERY WORKLOADS Shanta Rangaswamy 1 and Shobha G. 2 1,2 Department

More information

Neuro-fuzzy, GA-Fuzzy, Neural-Fuzzy-GA: A Data Mining Technique for Optimization

Neuro-fuzzy, GA-Fuzzy, Neural-Fuzzy-GA: A Data Mining Technique for Optimization International Journal of Computer Science and Software Engineering Volume 3, Number 1 (2017), pp. 1-9 International Research Publication House http://www.irphouse.com Neuro-fuzzy, GA-Fuzzy, Neural-Fuzzy-GA:

More information

Big Data Methods. Chapter 5: Machine learning. Big Data Methods, Chapter 5, Slide 1

Big Data Methods. Chapter 5: Machine learning. Big Data Methods, Chapter 5, Slide 1 Big Data Methods Chapter 5: Machine learning Big Data Methods, Chapter 5, Slide 1 5.1 Introduction to machine learning What is machine learning? Concerned with the study and development of algorithms that

More information

Frequent Pattern Mining

Frequent Pattern Mining Frequent Pattern Mining How Many Words Is a Picture Worth? E. Aiden and J-B Michel: Uncharted. Reverhead Books, 2013 Jian Pei: CMPT 741/459 Frequent Pattern Mining (1) 2 Burnt or Burned? E. Aiden and J-B

More information

International Journal of Data Mining & Knowledge Management Process (IJDKP) Vol.7, No.3, May Dr.Zakea Il-Agure and Mr.Hicham Noureddine Itani

International Journal of Data Mining & Knowledge Management Process (IJDKP) Vol.7, No.3, May Dr.Zakea Il-Agure and Mr.Hicham Noureddine Itani LINK MINING PROCESS Dr.Zakea Il-Agure and Mr.Hicham Noureddine Itani Higher Colleges of Technology, United Arab Emirates ABSTRACT Many data mining and knowledge discovery methodologies and process models

More information

Lecture 5: Decision Trees (Part II)

Lecture 5: Decision Trees (Part II) Lecture 5: Decision Trees (Part II) Dealing with noise in the data Overfitting Pruning Dealing with missing attribute values Dealing with attributes with multiple values Integrating costs into node choice

More information

An Introduction to Data Mining BY:GAGAN DEEP KAUSHAL

An Introduction to Data Mining BY:GAGAN DEEP KAUSHAL An Introduction to Data Mining BY:GAGAN DEEP KAUSHAL Trends leading to Data Flood More data is generated: Bank, telecom, other business transactions... Scientific Data: astronomy, biology, etc Web, text,

More information

Research on Data Mining Technology Based on Business Intelligence. Yang WANG

Research on Data Mining Technology Based on Business Intelligence. Yang WANG 2018 International Conference on Mechanical, Electronic and Information Technology (ICMEIT 2018) ISBN: 978-1-60595-548-3 Research on Data Mining Technology Based on Business Intelligence Yang WANG Communication

More information

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

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

More information

Genetic Algorithm for Finding Shortest Path in a Network

Genetic Algorithm for Finding Shortest Path in a Network Intern. J. Fuzzy Mathematical Archive Vol. 2, 2013, 43-48 ISSN: 2320 3242 (P), 2320 3250 (online) Published on 26 August 2013 www.researchmathsci.org International Journal of Genetic Algorithm for Finding

More information

Hybrid Feature Selection for Modeling Intrusion Detection Systems

Hybrid Feature Selection for Modeling Intrusion Detection Systems Hybrid Feature Selection for Modeling Intrusion Detection Systems Srilatha Chebrolu, Ajith Abraham and Johnson P Thomas Department of Computer Science, Oklahoma State University, USA ajith.abraham@ieee.org,

More information

A SURVEY ON DATA MINING TECHNIQUES FOR CLASSIFICATION OF IMAGES

A SURVEY ON DATA MINING TECHNIQUES FOR CLASSIFICATION OF IMAGES A SURVEY ON DATA MINING TECHNIQUES FOR CLASSIFICATION OF IMAGES 1 Preeti lata sahu, 2 Ms.Aradhana Singh, 3 Mr.K.L.Sinha 1 M.Tech Scholar, 2 Assistant Professor, 3 Sr. Assistant Professor, Department of

More information

INFREQUENT WEIGHTED ITEM SET MINING USING NODE SET BASED ALGORITHM

INFREQUENT WEIGHTED ITEM SET MINING USING NODE SET BASED ALGORITHM INFREQUENT WEIGHTED ITEM SET MINING USING NODE SET BASED ALGORITHM G.Amlu #1 S.Chandralekha #2 and PraveenKumar *1 # B.Tech, Information Technology, Anand Institute of Higher Technology, Chennai, India

More information