- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What are the mining multidimensional association rules from relational databases and data warehouses?
Association rule learning is a type of unsupervised learning technique that tests for the dependency of one data element on another data element and maps accordingly so that it can be more commercial. It tries to discover some interesting relations or associations between the variables of the dataset. It depends on several rules to find interesting relations among variables in the database.
The association rule learning is the essential concept of machine learning, and it is employed in Market Basket analysis, Web usage mining, continuous production, etc. Therefore market basket analysis is an approach used by several big retailers to find the associations between items.
In market basket analysis, customer buying habits are analyzed by finding associations between the different items that customers place in their shopping baskets.
By discovering such associations, retailers create marketing approaches by analyzing which items are generally purchased by the customer. This association can lead to raised sales by supporting retailers to do selective marketing and plan for their shelf area.
The popular area of application for the multi-level association is market basket analysis, which studies the buying habits of customers by searching for sets of items that are frequently, purchased together which was displayed in the concept of concept hierarchy.
Association rules with two or more dimensions or predicates can be referred to as multidimensional association rules. For example,
Age (X, "20...29") ^occupation (X,"Student") =>buys (X,"Laptop")
This rule contains three predicates (age, occupation, and buys), each of which occurs only once in the rule, such rules are called interdimensional association rules. The rules with repeated predicates or containing multiple occurrences of some predicates are called hybrid-dimension association rules.
For example,
Age (X, "20...29") ^buys (X,"Laptop") =>buys (X,"Printer")
The database attributes should be categorical or quantitative.
Categorical attributes have a finite number of possible values, with no ordering among the values also called nominal attributes.
Quantitative attributes are numeric and have an implicit sequencing between values. The three basic approaches regarding the treatment of quantitative attributes are as follows −
In the first approach, quantitative attributes are discretized using a predefined concept hierarchy, which occurs before mining. The discretized numeric attributes with their range values can be considered as categorical attributes.
In the second approach, quantitative attributes are categorized in bins and it is based on the distribution of the data. These bins can be further combined during the mining process. Therefore the process of discretization is dynamic and established.
In the third approach, quantitative attributes are discretized to capture the semantic meaning of such interval data. This powerful discretization phase treated the distance among data points.
- Related Articles
- What are the mining multilevel association rules from transactional databases?
- What is Multi-relational Data Mining?
- Multilevel Association Rule in data mining
- Relational Databases
- Multidimensional Databases
- How are organizations using the information from data warehouses?
- What are the rules of web usage mining?
- Object and Object-Relational Databases
- What are the strategy of backup and recovery in data warehouses?
- What are the various extraction methods in data warehouses?
- What is Constraint-Based Association Mining?
- What are the challenges regarding the construction and utilization of spatial data warehouses?
- What are the data mining transformations?
- What are the data mining interfaces?
- What is Backup and recovery in data warehouses?
