International Journal of Trend in Scientific Research and Development, Volume 1(4), ISSN: 2456-6470
www.ijtsrd.com
30
IJTSRD | May-Jun 2017
Available Online @www.ijtsrd.com
Data Mining based on Hashing Technique
Krishan Rohilla1
, Shabnam Kumari2
, Reema3
2,3
A.P., Department of CSE, Sat Kabir Institute of Technology & Management, Bahadurgarh, Haryana, India
1
M.Tech scholar., Deptt of CSE, Sat Kabir Institute of Technology & Management, Bahadurgarh, Haryana, India
Abstract: Data Mining is an important aspect for any
business. Most of the management level decisions are
based on the process of Data Mining. One of such
aspect is the association between different sale
products i.e. what is the actual support of a product
respected to the other product. This concept is called
Association Mining. According to this concept we
define the process of estimating the sale of one
product respective to the other product. We are
proposing an association rule based on the concept of
Hardware support. In this concept we first maintain
the database and compare it with systolic array after
this a pruning process is being performed to filter the
database and to remove the rarely used items. Finally
the data is indexed according to hashing technique
and the decision is performed in terms of support
count.
Keywords: Apriory, Clustering, Hashing, Data
mining Techniques, Decision Trees.
1. INTRODUCTION
Data mining refers to extracting or mining the
knowledge from large amount of data. Data collection
and storage technology has made it possible for
organizations to accumulate huge amounts of data at
lower cost. Exploiting this stored data, in order to
extract useful and actionable information, is the
overall goal of the generic activity termed as data
mining.
1.1.How does data mining work?
While large-scale information technology has been
evolving separate transaction and analytical systems,
data mining provides the link between the two. Data
mining software analyzes relationships and patterns in
stored transaction data based on open-ended user
queries. Several types of analytical software are
available: statistical, machine learning, and neural
networks. Generally, any of four types of
relationships are sought:
 Classes: Stored data is used to locate data in
predetermined groups. For example, a restaurant
chain could mine customer purchase data to
determine when customers visit and what they
typically order. This information could be used to
increase traffic by having daily specials.
 Clusters: Data items are grouped according to
logical relationships or consumer preferences. For
example, data can be mined to identify market
segments or consumer affinities.
 Associations: Data can be mined to identify
associations. The beer-diaper example is an
example of associative mining.
 Sequential patterns: Data is mined to anticipate
behavior patterns and trends. For example, an
outdoor equipment retailer could predict the
likelihood of a backpack being purchased based
on a consumer's purchase of sleeping bags and
hiking shoes.
1.2.Elements of data mining:
Data mining consists of five major elements:
 Extract, transform, and load transaction data
onto the data warehouse system.
International Journal of Trend in Scientific Research and Development, Volume 1(4), ISSN: 2456-6470
www.ijtsrd.com
31
IJTSRD | May-Jun 2017
Available Online @www.ijtsrd.com
 Store and manage the data in a
multidimensional database system.
 Provide data access to business analysts and
information technology professionals.
 Analyze the data by application software.
 Present the data in a useful format, such as a
graph or table.
1.3.Parameters of Data Mining:
Data mining parameters include:
1.3.1. Regression - In statistics, regression analysis
includes any techniques for modeling and
analyzing several variables, when the focus is
on the relationship between a dependent
variable and one or more independent
variables
1.3.2. Sequence or path analysis - looking for
patterns where one event leads to another later
event.
1.3.3. Classification - looking for new patterns (May
result in a change in the way the data is
organized but that's ok).
1.3.4. Clustering - finding and visually documenting
groups of facts not previously known.
1.3.5. Decision Trees – Decision trees are commonly
used in operations research, specifically in
decision analysis, to help identify a strategy
most likely to reach a goal.
1.4.Levels of analysis:
Different levels of analysis are available:
 Artificial neural networks: Non-linear
predictive models that learn through training
and resemble biological neural networks in
structure.
 Genetic algorithms: Optimization techniques
that use processes such as genetic
combination, mutation, and natural selection
in a design based on the concepts of natural
evolution.
 Decision trees: Tree-shaped structures that
represent sets of decisions. These decisions
generate rules for the classification of a
dataset. Specific decision tree methods include
Classification and Regression Trees (CART)
and Chi Square Automatic Interaction
Detection (CHAID) . CART and CHAID are
decision tree techniques used for classification
of a dataset. They provide a set of rules that
you can apply to a new (unclassified) dataset
to predict which records will have a given
outcome. CART segments a dataset by
creating 2-way splits while CHAID segments
using chi square tests to create multi-way
splits. CART typically requires less data
preparation than CHAID.
 Nearest neighbor method: A technique that
classifies each record in a dataset based on a
combination of the classes of the k record(s)
most similar to it in a historical dataset (where
k 1). Sometimes called the k-nearest neighbor
technique.
 Rule induction: The extraction of useful if-
then rules from data based on statistical
significance.
 Data visualization: The visual interpretation
of complex relationships in multidimensional
data. Graphics tools are used to illustrate data
relationships
2. Architecture of Data Mining
To best apply advanced techniques, it must be
fully integrated with a data warehouse as well as
flexible interactive business analysis tools. Many
data mining tools currently operate outside of the
warehouse, requiring extra steps for extracting,
importing, and analyzing the data. Furthermore,
when new insights require operational
implementation, integration with the warehouse
simplifies the application of results from data
mining. The resulting analytic data warehouse can
be applied to improve business processes
throughout the organization, in areas such as
promotional campaign management, fraud
detection, new product rollout, and so on. Figure 1
International Journal of Trend in Scientific Research and Development, Volume 1(4), ISSN: 2456-6470
www.ijtsrd.com
32
IJTSRD | May-Jun 2017
Available Online @www.ijtsrd.com
illustrates architecture for advanced analysis in a
large data warehouse.
Figure 1 - Integrated Data Mining Architecture
The ideal starting point is a data warehouse containing
a combination of internal data tracking all customer
contact coupled with external market data about
competitor activity. Background information on
potential customers also provides an excellent basis
for prospecting. This warehouse can be implemented
in a variety of relational database systems: Sybase,
Oracle, Redbrick, and so on, and should be optimized
for flexible and fast data access.
3. Problem Definition
Current researches on data mining are based on
simple transaction data models. Given an item set
{itemi} and a transaction set {transi}, an association
rule is defined as an implication of the form, XY,
where X and Y are non-overlap subsets of {itemi}. In
classification data set, an item can be viewed as
{attribute, value} pair. Two important related
quantities are confidence c, which is the percentage of
transactions including X and Y to transactions
including X, and support s, which is the percentage of
transactions including X and Y to all transactions.
Classification association rule (CAR) is then Xci
where ci is a class label. A training data set is such a
set of data items that for each item, there exists a class
label associated with it. A classifier is a function that
maps attributes to class labels. In general, given a
training data set, classification is to build a class
model from the training data set such that it can be
used to predict the class labels of unknown items with
high accuracy.
3.1.Association rule Mining:
Association rule mining finds interesting association
or correlation relationships among a large set of data
items. It first discovers frequent item sets satisfying
user-defined minimum support, and then from which
generates strong association rules satisfying user-
defined minimum confidence. The most famous
algorithm for association rule mining is Apriori
algorithm.[2]
Most of the previous studies on
association rule mining adopt the Apriori-like
candidate set generation-and-test approach.Apriori
algorithm uses frequent (k – 1)-itemsets to generate
candidate frequent k-itemsets and use database scan
and pattern matching to collect counts for the
candidate itemsets. Recently, J. Han et al critiqued
that the bottleneck of Apriori algorithm is the cost of
the candidate generation and multiple scans of
database. Han’s group developed another influential
method for discovering frequent pattern without
candidate generation, which is called frequent pattern
growth (FP-growth). It adopts divide-and-conquer
strategy and constructs a highly compact data
structure (FP-tree) to compress the original
transaction database. It focuses on the frequent pattern
(fragment) growth and eliminate repeated database
scan. The performance study by Han’s group shows
that FP-growth is more efficient than Aproiori
algorithm.[3]
3.2.Classification rule mining:
Classification rule mining is to build a class model or
classifier by analyzing predetermining training data
and apply the model to predict the future cases.
Besides other techniques for data classification such
as decision tree induction, Bayesian classification,
neural network, classification based on data
warehousing technology, and etc.The associative
classification or classification based on association
rules is an integrated technique that applies the
methods of association rule mining to the
classification. It typically consists of two steps:
International Journal of Trend in Scientific Research and Development, Volume 1(4), ISSN: 2456-6470
www.ijtsrd.com
33
IJTSRD | May-Jun 2017
Available Online @www.ijtsrd.com
3.2.1. The first step finds the subset of association
rules that are both frequent and accurate using
association rule techniques.
3.2.2. The second step employs the rules for
classification.
4. Previous Work
Recent researches on the integration of association
rule mining and classification rule mining. Recently,
Bing Liu et al proposed Classification Based on
Association rules (CBA) algorithm as an integration
of classification rule mining and association rule
mining.[4]
The integration was done by finding a special subset
of association rules called class association rules
(CARs) and building a classifier from the CARs. The
main strength of CBA algorithm is its ability to use
the most accurate rules for classification, which
explains its better performance compared with some
original classification algorithms such as C4.5. Liu’s
research group also proposed some methods to deal
with the problems of the original CBA algorithm such
as single minimum support and not being able to
generate long rules for many datasets. The
performance of the algorithm was improved by using
multiple minimum support (Smin) instead of a single
Smin, and combining CBA algorithm with other
techniques such as decision tree method.[5,6]
More
recently, Wenmin Li et al critiqued some weakness of
Liu’s approach as follows: (1) simply selection a rule
with a maximal user-defined measure may affect the
classification accuracy, (2) the efficiency problem of
storing, retrieve, pruning, and sorting a large number
of rules for classification when there exist a huge
number of rules, large training data sets, and long
pattern rules. They proposed a new associative
classification algorithm: Classification based on
Multiple Association Rules (CMAR). The
experimental result shows that CMAR provides better
efficiency and accuracy compared with CBA
algorithm. The accuracy of CMAR is achieved by
using multiple association rules for classification. The
efficiency of CMAR is achieved by extension of
efficient frequent pattern method, FP-growth,
construction of a class distribution-associated FP-tree,
and applying a CR-tree structure to store and retrieve
mined association rules.[7]
(Both CBA algorithm and
CMAR algorithm will be discussed in detail later in
the section of related work.)
5. Proposed Work
6.
In this research work we are proposing a new
architecture for the association rule mining. The
complete concept the proposed work is based on two
main concepts
 Hash Based System
 Pipelined system
The system architecture is inspired from the hardware
enhancement. As the architecture is followed by any
hardware system same approach is being proposed in
this work to find the association between the selling
produces
The complete work is divided in 3 states:
 In first modules the data will be collected and
stored into the hardware system. In this system
the dataset is being compared with the systolic
array.
 In the second module the pruning process will
be performed. It is actual the filtration process
to clear all such items that are not part of
frequently used item list. We can setup the
association rules based on the frequently
selling items. If some item is being sold rarely
any need to establish any association rule onto
it. This process will be done by Pruning
 In third stage, on the dataset collected from the
customer transaction a hash table will be
maintained. On the basis of this dataset the
actual decision support will be calculated and
the results will be derived
7. Conclusion:
International Journal of Trend in Scientific Research and Development, Volume 1(4), ISSN: 2456-6470
www.ijtsrd.com
34
IJTSRD | May-Jun 2017
Available Online @www.ijtsrd.com
DataIn this research we conclude that with the help of
hash based pipelining technique products in market
can be sold faster because in HAPPI technique it
removes bottleneck problem thereby providing faster
throughput and our sales process becomes faster
because due to indexing hasing process becomes
faster. Firstly items are kept in systolic array then
items which are not in close proximity with each other
are trimmed or removed from the filter then put into
hash table filter so that duplication of items get
removed so in this way. It solves our bottleneck
problem
Acknowledgement
I would like to thank my guide Ms. Shabnam Kumari
for her indispensible ideas and continuous support,
encouragement, advice and understanding me through
my difficult times and keeping up my enthusiasm,
encouraging me andfor showing great interest in my
dissertation work, this work could not finished
without her valuable comments and inspiring
guidance.
References:
[1] Xingquan Zhu, Ian Davidson, “Knowledge
Discovery and Data Mining: Challenges and
Realities”, ISBN 978- 1-59904-252, Hershey, New
York, 2007.
[2] Joseph, Zernik, “Data Mining as a Civic Duty –
Online Public Prisoners Registration Systems”,
International Journal on Social Media: Monitoring,
Measurement, Mining, vol. - 1, no.-1, pp. 84-96,
September2010.
[3] Dr. Lokanatha C. Reddy, A Review on Data
mining from Past to the Future, International Journal
of Computer Applications (0975 – 8887) Volume 15–
No.7, February 2011 [2]. Usama Fayyad, Gregory
Piatetsky-Shapiro, and Padhraic Smyth,From Data
Mining to Knowledge Discovery in Databases, AI
Magazine Volume 17 Number 3 (1996)
[4]http://www.slideshare.net/Annie05/sequential-
pattern-discovery-presentation
[5]http://dataminingtools.net/wiki/introduction_to_dat
a_mining.php
[6] http://www.dataminingtechniques.net
[7] http://www.slideshare.net/huongcokho/data-
mining-concepts
[8] Fayyad, Usama; Gregory Piatetsky-Shapiro, and
Padhraic Smyth (1996). "From Data Mining to
Knowledge Discovery in Databases".
http://www.kdnuggets.com/gpspubs/aimag-kdd-
overview-1996-Fayyad.pdf Retrieved 2008-12-17..
[9] “Data mining and ware housing”. Electronics
Computer Technology (ICECT), 2011 3rd
International Conference on Volume:1, Publication
Year: 2011 , Page(s): 1 – 5
[10] Weiyang Lin, Sergio A. Alvarez and Carolina
Ruiz “Collaborative Recommendation via Adaptive
Association Rule Mining” (2000)
[11] A Data Mining Framework for Building A Web-
Page Recommender System
[12]Jorge, A., Alves, M. A. and Azevedo, P.
“Recommendation with Association Rules: A Web
Mining Application” in Proceedings of Data Mining
and Werehouses, a sub-conference of information
society 2002, EDS. Mladenic, D., Grobelnik, M.,
Josef Stefan Institute. (October 2002)
[13] Eui-Hong (Sam) Han and George Karypis
“Feature-Based Recommendation System”
Conference on Information and Knowledge
Management (2005)
[14] Barry Smyth, Kevin McCarthy, James Reilly,
Derry O'Sullivan, Lorraine McGinty and David C.
Wilson “Case-Studies in Association Rule Mining for
Recommender Systems” (2005)
Books:
[1]. Arun K. Pujari, Data Mining Techniques
[2]. Jiawei Han, Micheline Kamber, Data Mining:
Concepts and Techniques

More Related Content

PDF
Data Mining Classification Comparison (Naïve Bayes and C4.5 Algorithms)
PPTX
Data mining techniques
PDF
A Survey on the Clustering Algorithms in Sales Data Mining
PDF
PATTERN DISCOVERY FOR MULTIPLE DATA SOURCES BASED ON ITEM RANK
PDF
Multiple Minimum Support Implementations with Dynamic Matrix Apriori Algorith...
PDF
Study of Data Mining Methods and its Applications
PPT
Data Mining: Concepts and techniques: Chapter 13 trend
PDF
Data mining
Data Mining Classification Comparison (Naïve Bayes and C4.5 Algorithms)
Data mining techniques
A Survey on the Clustering Algorithms in Sales Data Mining
PATTERN DISCOVERY FOR MULTIPLE DATA SOURCES BASED ON ITEM RANK
Multiple Minimum Support Implementations with Dynamic Matrix Apriori Algorith...
Study of Data Mining Methods and its Applications
Data Mining: Concepts and techniques: Chapter 13 trend
Data mining

What's hot (18)

ODP
Data mining
PDF
Introduction to Data Mining
PPT
Data mining and knowledge Discovery
PPTX
Data Mining & Applications
PPT
Data miningppt378
PDF
Data Mining Techniques
PDF
A literature review of modern association rule mining techniques
PDF
Data Mining For Supermarket Sale Analysis Using Association Rule
PPTX
Data mining
PDF
Advancing Knowledge Discovery and Data Mining
PPTX
01 Introduction to Data Mining
PDF
6 ijaems sept-2015-6-a review of data security primitives in data mining
PDF
Hu3414421448
PPTX
Data Mining: Classification and analysis
PPT
3. mining frequent patterns
PPT
Talk
PDF
Data mining seminar report
PDF
Dy33753757
Data mining
Introduction to Data Mining
Data mining and knowledge Discovery
Data Mining & Applications
Data miningppt378
Data Mining Techniques
A literature review of modern association rule mining techniques
Data Mining For Supermarket Sale Analysis Using Association Rule
Data mining
Advancing Knowledge Discovery and Data Mining
01 Introduction to Data Mining
6 ijaems sept-2015-6-a review of data security primitives in data mining
Hu3414421448
Data Mining: Classification and analysis
3. mining frequent patterns
Talk
Data mining seminar report
Dy33753757
Ad

Similar to Data Mining based on Hashing Technique (20)

PDF
Introduction to feature subset selection method
PDF
An Efficient Approach for Asymmetric Data Classification
PDF
A new hybrid algorithm for business intelligence recommender system
PDF
A NEW HYBRID ALGORITHM FOR BUSINESS INTELLIGENCE RECOMMENDER SYSTEM
PPTX
Data mining
PPTX
Classification and prediction in data mining
PPTX
Seminar Presentation
PDF
CONFIGURING ASSOCIATIONS TO INCREASE TRUST IN PRODUCT PURCHASE
PDF
Configuring Associations to Increase Trust in Product Purchase
PDF
data mining
PDF
EXPLORING DATA MINING TECHNIQUES AND ITS APPLICATIONS
PDF
EXPLORING DATA MINING TECHNIQUES AND ITS APPLICATIONS
PDF
Data Mining – A Perspective Approach
PDF
An Improvised Fuzzy Preference Tree Of CRS For E-Services Using Incremental A...
PDF
Ec3212561262
PDF
Paper id 212014126
PDF
IRJET- Fault Detection and Prediction of Failure using Vibration Analysis
PDF
IRJET- Cluster Analysis for Effective Information Retrieval through Cohesive ...
DOCX
Mayer_R_212017705
PPT
Data Mining
Introduction to feature subset selection method
An Efficient Approach for Asymmetric Data Classification
A new hybrid algorithm for business intelligence recommender system
A NEW HYBRID ALGORITHM FOR BUSINESS INTELLIGENCE RECOMMENDER SYSTEM
Data mining
Classification and prediction in data mining
Seminar Presentation
CONFIGURING ASSOCIATIONS TO INCREASE TRUST IN PRODUCT PURCHASE
Configuring Associations to Increase Trust in Product Purchase
data mining
EXPLORING DATA MINING TECHNIQUES AND ITS APPLICATIONS
EXPLORING DATA MINING TECHNIQUES AND ITS APPLICATIONS
Data Mining – A Perspective Approach
An Improvised Fuzzy Preference Tree Of CRS For E-Services Using Incremental A...
Ec3212561262
Paper id 212014126
IRJET- Fault Detection and Prediction of Failure using Vibration Analysis
IRJET- Cluster Analysis for Effective Information Retrieval through Cohesive ...
Mayer_R_212017705
Data Mining
Ad

More from ijtsrd (20)

PDF
A Study of School Dropout in Rural Districts of Darjeeling and Its Causes
PDF
Pre extension Demonstration and Evaluation of Soybean Technologies in Fedis D...
PDF
Pre extension Demonstration and Evaluation of Potato Technologies in Selected...
PDF
Pre extension Demonstration and Evaluation of Animal Drawn Potato Digger in S...
PDF
Pre extension Demonstration and Evaluation of Drought Tolerant and Early Matu...
PDF
Pre extension Demonstration and Evaluation of Double Cropping Practice Legume...
PDF
Pre extension Demonstration and Evaluation of Common Bean Technology in Low L...
PDF
Enhancing Image Quality in Compression and Fading Channels A Wavelet Based Ap...
PDF
Manpower Training and Employee Performance in Mellienium Ltdawka, Anambra State
PDF
A Statistical Analysis on the Growth Rate of Selected Sectors of Nigerian Eco...
PDF
Automatic Accident Detection and Emergency Alert System using IoT
PDF
Corporate Social Responsibility Dimensions and Corporate Image of Selected Up...
PDF
The Role of Media in Tribal Health and Educational Progress of Odisha
PDF
Advancements and Future Trends in Advanced Quantum Algorithms A Prompt Scienc...
PDF
A Study on Seismic Analysis of High Rise Building with Mass Irregularities, T...
PDF
Descriptive Study to Assess the Knowledge of B.Sc. Interns Regarding Biomedic...
PDF
Performance of Grid Connected Solar PV Power Plant at Clear Sky Day
PDF
Vitiligo Treated Homoeopathically A Case Report
PDF
Vitiligo Treated Homoeopathically A Case Report
PDF
Uterine Fibroids Homoeopathic Perspectives
A Study of School Dropout in Rural Districts of Darjeeling and Its Causes
Pre extension Demonstration and Evaluation of Soybean Technologies in Fedis D...
Pre extension Demonstration and Evaluation of Potato Technologies in Selected...
Pre extension Demonstration and Evaluation of Animal Drawn Potato Digger in S...
Pre extension Demonstration and Evaluation of Drought Tolerant and Early Matu...
Pre extension Demonstration and Evaluation of Double Cropping Practice Legume...
Pre extension Demonstration and Evaluation of Common Bean Technology in Low L...
Enhancing Image Quality in Compression and Fading Channels A Wavelet Based Ap...
Manpower Training and Employee Performance in Mellienium Ltdawka, Anambra State
A Statistical Analysis on the Growth Rate of Selected Sectors of Nigerian Eco...
Automatic Accident Detection and Emergency Alert System using IoT
Corporate Social Responsibility Dimensions and Corporate Image of Selected Up...
The Role of Media in Tribal Health and Educational Progress of Odisha
Advancements and Future Trends in Advanced Quantum Algorithms A Prompt Scienc...
A Study on Seismic Analysis of High Rise Building with Mass Irregularities, T...
Descriptive Study to Assess the Knowledge of B.Sc. Interns Regarding Biomedic...
Performance of Grid Connected Solar PV Power Plant at Clear Sky Day
Vitiligo Treated Homoeopathically A Case Report
Vitiligo Treated Homoeopathically A Case Report
Uterine Fibroids Homoeopathic Perspectives

Recently uploaded (20)

PDF
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
PDF
Mucosal Drug Delivery system_NDDS_BPHARMACY__SEM VII_PCI.pdf
PDF
MICROENCAPSULATION_NDDS_BPHARMACY__SEM VII_PCI .pdf
PDF
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
PDF
Journal of Dental Science - UDMY (2021).pdf
PDF
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
PDF
English Textual Question & Ans (12th Class).pdf
PDF
BP 505 T. PHARMACEUTICAL JURISPRUDENCE (UNIT 1).pdf
PDF
Empowerment Technology for Senior High School Guide
PDF
LIFE & LIVING TRILOGY - PART (3) REALITY & MYSTERY.pdf
PDF
My India Quiz Book_20210205121199924.pdf
PDF
International_Financial_Reporting_Standa.pdf
PDF
LIFE & LIVING TRILOGY- PART (1) WHO ARE WE.pdf
DOCX
Cambridge-Practice-Tests-for-IELTS-12.docx
PDF
David L Page_DCI Research Study Journey_how Methodology can inform one's prac...
PDF
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 1)
PDF
What if we spent less time fighting change, and more time building what’s rig...
PDF
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
PDF
Environmental Education MCQ BD2EE - Share Source.pdf
PDF
LIFE & LIVING TRILOGY - PART - (2) THE PURPOSE OF LIFE.pdf
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
Mucosal Drug Delivery system_NDDS_BPHARMACY__SEM VII_PCI.pdf
MICROENCAPSULATION_NDDS_BPHARMACY__SEM VII_PCI .pdf
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
Journal of Dental Science - UDMY (2021).pdf
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
English Textual Question & Ans (12th Class).pdf
BP 505 T. PHARMACEUTICAL JURISPRUDENCE (UNIT 1).pdf
Empowerment Technology for Senior High School Guide
LIFE & LIVING TRILOGY - PART (3) REALITY & MYSTERY.pdf
My India Quiz Book_20210205121199924.pdf
International_Financial_Reporting_Standa.pdf
LIFE & LIVING TRILOGY- PART (1) WHO ARE WE.pdf
Cambridge-Practice-Tests-for-IELTS-12.docx
David L Page_DCI Research Study Journey_how Methodology can inform one's prac...
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 1)
What if we spent less time fighting change, and more time building what’s rig...
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
Environmental Education MCQ BD2EE - Share Source.pdf
LIFE & LIVING TRILOGY - PART - (2) THE PURPOSE OF LIFE.pdf

Data Mining based on Hashing Technique

  • 1. International Journal of Trend in Scientific Research and Development, Volume 1(4), ISSN: 2456-6470 www.ijtsrd.com 30 IJTSRD | May-Jun 2017 Available Online @www.ijtsrd.com Data Mining based on Hashing Technique Krishan Rohilla1 , Shabnam Kumari2 , Reema3 2,3 A.P., Department of CSE, Sat Kabir Institute of Technology & Management, Bahadurgarh, Haryana, India 1 M.Tech scholar., Deptt of CSE, Sat Kabir Institute of Technology & Management, Bahadurgarh, Haryana, India Abstract: Data Mining is an important aspect for any business. Most of the management level decisions are based on the process of Data Mining. One of such aspect is the association between different sale products i.e. what is the actual support of a product respected to the other product. This concept is called Association Mining. According to this concept we define the process of estimating the sale of one product respective to the other product. We are proposing an association rule based on the concept of Hardware support. In this concept we first maintain the database and compare it with systolic array after this a pruning process is being performed to filter the database and to remove the rarely used items. Finally the data is indexed according to hashing technique and the decision is performed in terms of support count. Keywords: Apriory, Clustering, Hashing, Data mining Techniques, Decision Trees. 1. INTRODUCTION Data mining refers to extracting or mining the knowledge from large amount of data. Data collection and storage technology has made it possible for organizations to accumulate huge amounts of data at lower cost. Exploiting this stored data, in order to extract useful and actionable information, is the overall goal of the generic activity termed as data mining. 1.1.How does data mining work? While large-scale information technology has been evolving separate transaction and analytical systems, data mining provides the link between the two. Data mining software analyzes relationships and patterns in stored transaction data based on open-ended user queries. Several types of analytical software are available: statistical, machine learning, and neural networks. Generally, any of four types of relationships are sought:  Classes: Stored data is used to locate data in predetermined groups. For example, a restaurant chain could mine customer purchase data to determine when customers visit and what they typically order. This information could be used to increase traffic by having daily specials.  Clusters: Data items are grouped according to logical relationships or consumer preferences. For example, data can be mined to identify market segments or consumer affinities.  Associations: Data can be mined to identify associations. The beer-diaper example is an example of associative mining.  Sequential patterns: Data is mined to anticipate behavior patterns and trends. For example, an outdoor equipment retailer could predict the likelihood of a backpack being purchased based on a consumer's purchase of sleeping bags and hiking shoes. 1.2.Elements of data mining: Data mining consists of five major elements:  Extract, transform, and load transaction data onto the data warehouse system.
  • 2. International Journal of Trend in Scientific Research and Development, Volume 1(4), ISSN: 2456-6470 www.ijtsrd.com 31 IJTSRD | May-Jun 2017 Available Online @www.ijtsrd.com  Store and manage the data in a multidimensional database system.  Provide data access to business analysts and information technology professionals.  Analyze the data by application software.  Present the data in a useful format, such as a graph or table. 1.3.Parameters of Data Mining: Data mining parameters include: 1.3.1. Regression - In statistics, regression analysis includes any techniques for modeling and analyzing several variables, when the focus is on the relationship between a dependent variable and one or more independent variables 1.3.2. Sequence or path analysis - looking for patterns where one event leads to another later event. 1.3.3. Classification - looking for new patterns (May result in a change in the way the data is organized but that's ok). 1.3.4. Clustering - finding and visually documenting groups of facts not previously known. 1.3.5. Decision Trees – Decision trees are commonly used in operations research, specifically in decision analysis, to help identify a strategy most likely to reach a goal. 1.4.Levels of analysis: Different levels of analysis are available:  Artificial neural networks: Non-linear predictive models that learn through training and resemble biological neural networks in structure.  Genetic algorithms: Optimization techniques that use processes such as genetic combination, mutation, and natural selection in a design based on the concepts of natural evolution.  Decision trees: Tree-shaped structures that represent sets of decisions. These decisions generate rules for the classification of a dataset. Specific decision tree methods include Classification and Regression Trees (CART) and Chi Square Automatic Interaction Detection (CHAID) . CART and CHAID are decision tree techniques used for classification of a dataset. They provide a set of rules that you can apply to a new (unclassified) dataset to predict which records will have a given outcome. CART segments a dataset by creating 2-way splits while CHAID segments using chi square tests to create multi-way splits. CART typically requires less data preparation than CHAID.  Nearest neighbor method: A technique that classifies each record in a dataset based on a combination of the classes of the k record(s) most similar to it in a historical dataset (where k 1). Sometimes called the k-nearest neighbor technique.  Rule induction: The extraction of useful if- then rules from data based on statistical significance.  Data visualization: The visual interpretation of complex relationships in multidimensional data. Graphics tools are used to illustrate data relationships 2. Architecture of Data Mining To best apply advanced techniques, it must be fully integrated with a data warehouse as well as flexible interactive business analysis tools. Many data mining tools currently operate outside of the warehouse, requiring extra steps for extracting, importing, and analyzing the data. Furthermore, when new insights require operational implementation, integration with the warehouse simplifies the application of results from data mining. The resulting analytic data warehouse can be applied to improve business processes throughout the organization, in areas such as promotional campaign management, fraud detection, new product rollout, and so on. Figure 1
  • 3. International Journal of Trend in Scientific Research and Development, Volume 1(4), ISSN: 2456-6470 www.ijtsrd.com 32 IJTSRD | May-Jun 2017 Available Online @www.ijtsrd.com illustrates architecture for advanced analysis in a large data warehouse. Figure 1 - Integrated Data Mining Architecture The ideal starting point is a data warehouse containing a combination of internal data tracking all customer contact coupled with external market data about competitor activity. Background information on potential customers also provides an excellent basis for prospecting. This warehouse can be implemented in a variety of relational database systems: Sybase, Oracle, Redbrick, and so on, and should be optimized for flexible and fast data access. 3. Problem Definition Current researches on data mining are based on simple transaction data models. Given an item set {itemi} and a transaction set {transi}, an association rule is defined as an implication of the form, XY, where X and Y are non-overlap subsets of {itemi}. In classification data set, an item can be viewed as {attribute, value} pair. Two important related quantities are confidence c, which is the percentage of transactions including X and Y to transactions including X, and support s, which is the percentage of transactions including X and Y to all transactions. Classification association rule (CAR) is then Xci where ci is a class label. A training data set is such a set of data items that for each item, there exists a class label associated with it. A classifier is a function that maps attributes to class labels. In general, given a training data set, classification is to build a class model from the training data set such that it can be used to predict the class labels of unknown items with high accuracy. 3.1.Association rule Mining: Association rule mining finds interesting association or correlation relationships among a large set of data items. It first discovers frequent item sets satisfying user-defined minimum support, and then from which generates strong association rules satisfying user- defined minimum confidence. The most famous algorithm for association rule mining is Apriori algorithm.[2] Most of the previous studies on association rule mining adopt the Apriori-like candidate set generation-and-test approach.Apriori algorithm uses frequent (k – 1)-itemsets to generate candidate frequent k-itemsets and use database scan and pattern matching to collect counts for the candidate itemsets. Recently, J. Han et al critiqued that the bottleneck of Apriori algorithm is the cost of the candidate generation and multiple scans of database. Han’s group developed another influential method for discovering frequent pattern without candidate generation, which is called frequent pattern growth (FP-growth). It adopts divide-and-conquer strategy and constructs a highly compact data structure (FP-tree) to compress the original transaction database. It focuses on the frequent pattern (fragment) growth and eliminate repeated database scan. The performance study by Han’s group shows that FP-growth is more efficient than Aproiori algorithm.[3] 3.2.Classification rule mining: Classification rule mining is to build a class model or classifier by analyzing predetermining training data and apply the model to predict the future cases. Besides other techniques for data classification such as decision tree induction, Bayesian classification, neural network, classification based on data warehousing technology, and etc.The associative classification or classification based on association rules is an integrated technique that applies the methods of association rule mining to the classification. It typically consists of two steps:
  • 4. International Journal of Trend in Scientific Research and Development, Volume 1(4), ISSN: 2456-6470 www.ijtsrd.com 33 IJTSRD | May-Jun 2017 Available Online @www.ijtsrd.com 3.2.1. The first step finds the subset of association rules that are both frequent and accurate using association rule techniques. 3.2.2. The second step employs the rules for classification. 4. Previous Work Recent researches on the integration of association rule mining and classification rule mining. Recently, Bing Liu et al proposed Classification Based on Association rules (CBA) algorithm as an integration of classification rule mining and association rule mining.[4] The integration was done by finding a special subset of association rules called class association rules (CARs) and building a classifier from the CARs. The main strength of CBA algorithm is its ability to use the most accurate rules for classification, which explains its better performance compared with some original classification algorithms such as C4.5. Liu’s research group also proposed some methods to deal with the problems of the original CBA algorithm such as single minimum support and not being able to generate long rules for many datasets. The performance of the algorithm was improved by using multiple minimum support (Smin) instead of a single Smin, and combining CBA algorithm with other techniques such as decision tree method.[5,6] More recently, Wenmin Li et al critiqued some weakness of Liu’s approach as follows: (1) simply selection a rule with a maximal user-defined measure may affect the classification accuracy, (2) the efficiency problem of storing, retrieve, pruning, and sorting a large number of rules for classification when there exist a huge number of rules, large training data sets, and long pattern rules. They proposed a new associative classification algorithm: Classification based on Multiple Association Rules (CMAR). The experimental result shows that CMAR provides better efficiency and accuracy compared with CBA algorithm. The accuracy of CMAR is achieved by using multiple association rules for classification. The efficiency of CMAR is achieved by extension of efficient frequent pattern method, FP-growth, construction of a class distribution-associated FP-tree, and applying a CR-tree structure to store and retrieve mined association rules.[7] (Both CBA algorithm and CMAR algorithm will be discussed in detail later in the section of related work.) 5. Proposed Work 6. In this research work we are proposing a new architecture for the association rule mining. The complete concept the proposed work is based on two main concepts  Hash Based System  Pipelined system The system architecture is inspired from the hardware enhancement. As the architecture is followed by any hardware system same approach is being proposed in this work to find the association between the selling produces The complete work is divided in 3 states:  In first modules the data will be collected and stored into the hardware system. In this system the dataset is being compared with the systolic array.  In the second module the pruning process will be performed. It is actual the filtration process to clear all such items that are not part of frequently used item list. We can setup the association rules based on the frequently selling items. If some item is being sold rarely any need to establish any association rule onto it. This process will be done by Pruning  In third stage, on the dataset collected from the customer transaction a hash table will be maintained. On the basis of this dataset the actual decision support will be calculated and the results will be derived 7. Conclusion:
  • 5. International Journal of Trend in Scientific Research and Development, Volume 1(4), ISSN: 2456-6470 www.ijtsrd.com 34 IJTSRD | May-Jun 2017 Available Online @www.ijtsrd.com DataIn this research we conclude that with the help of hash based pipelining technique products in market can be sold faster because in HAPPI technique it removes bottleneck problem thereby providing faster throughput and our sales process becomes faster because due to indexing hasing process becomes faster. Firstly items are kept in systolic array then items which are not in close proximity with each other are trimmed or removed from the filter then put into hash table filter so that duplication of items get removed so in this way. It solves our bottleneck problem Acknowledgement I would like to thank my guide Ms. Shabnam Kumari for her indispensible ideas and continuous support, encouragement, advice and understanding me through my difficult times and keeping up my enthusiasm, encouraging me andfor showing great interest in my dissertation work, this work could not finished without her valuable comments and inspiring guidance. References: [1] Xingquan Zhu, Ian Davidson, “Knowledge Discovery and Data Mining: Challenges and Realities”, ISBN 978- 1-59904-252, Hershey, New York, 2007. [2] Joseph, Zernik, “Data Mining as a Civic Duty – Online Public Prisoners Registration Systems”, International Journal on Social Media: Monitoring, Measurement, Mining, vol. - 1, no.-1, pp. 84-96, September2010. [3] Dr. Lokanatha C. Reddy, A Review on Data mining from Past to the Future, International Journal of Computer Applications (0975 – 8887) Volume 15– No.7, February 2011 [2]. Usama Fayyad, Gregory Piatetsky-Shapiro, and Padhraic Smyth,From Data Mining to Knowledge Discovery in Databases, AI Magazine Volume 17 Number 3 (1996) [4]http://www.slideshare.net/Annie05/sequential- pattern-discovery-presentation [5]http://dataminingtools.net/wiki/introduction_to_dat a_mining.php [6] http://www.dataminingtechniques.net [7] http://www.slideshare.net/huongcokho/data- mining-concepts [8] Fayyad, Usama; Gregory Piatetsky-Shapiro, and Padhraic Smyth (1996). "From Data Mining to Knowledge Discovery in Databases". http://www.kdnuggets.com/gpspubs/aimag-kdd- overview-1996-Fayyad.pdf Retrieved 2008-12-17.. [9] “Data mining and ware housing”. Electronics Computer Technology (ICECT), 2011 3rd International Conference on Volume:1, Publication Year: 2011 , Page(s): 1 – 5 [10] Weiyang Lin, Sergio A. Alvarez and Carolina Ruiz “Collaborative Recommendation via Adaptive Association Rule Mining” (2000) [11] A Data Mining Framework for Building A Web- Page Recommender System [12]Jorge, A., Alves, M. A. and Azevedo, P. “Recommendation with Association Rules: A Web Mining Application” in Proceedings of Data Mining and Werehouses, a sub-conference of information society 2002, EDS. Mladenic, D., Grobelnik, M., Josef Stefan Institute. (October 2002) [13] Eui-Hong (Sam) Han and George Karypis “Feature-Based Recommendation System” Conference on Information and Knowledge Management (2005) [14] Barry Smyth, Kevin McCarthy, James Reilly, Derry O'Sullivan, Lorraine McGinty and David C. Wilson “Case-Studies in Association Rule Mining for Recommender Systems” (2005) Books: [1]. Arun K. Pujari, Data Mining Techniques [2]. Jiawei Han, Micheline Kamber, Data Mining: Concepts and Techniques