Question: question: with the below example extract the Mining classification rules through the given DMQL . Write a math solutions and anote ( not code )
question: with the below example extract the Mining classification rules through the given DMQL Write a math solutions and anote not code in pen and paper pages
As a marketing manager of AllElectronics, you would like
to classify customers based on their buying patterns.
You are interested in customers whose salary
$ and who have bought $ worth of items,
each of which is priced $
You are interested in the customers age, income, the
types of items purchased, the purchase location, and
where the items were made.
You would like to view the resulting classification in the
form of rules.
This data mining query is expressed in DMQL as follows.
Mining classification rules
use database AllElectronicsdb
use locationhierarchy for Tbranch, agehierarchy for Cage
mine classification as promising customers
in relevance to Cage, Cincome, I.type, I.placemade,
Tbranch
from customer C item I, transaction T
where I.itemID TitemID and CcustID TcustID
and Cincome and I.price
group by TcustID
having sumIprice
display as rules
Miningclassification rules
The data mining query is parsed to form an SQL query that
retrieves the set of taskrelevant data specified in lines to
Line specifies the AllElectronics database, line lists the
relevant attributes ie on which mining is to be performed from
the relations specified in line for the conditions given in lines
and
Line specifies that the concept hierarchies location hierarchy
and age hierarchy be used as background knowledge to
generalize branch locations and customer age values,
respectively.
Line specifies that the kind of knowledge to be mined for this
task is classification. Note that we want to generate a
classification model for promising customers versus non
promising customers.
Miningclassification rules
In classification, often, an attribute may be specified as the
class label attribute, whose values explicitly represent the
classes.
However, in this example, the two classes are implicit.
The specified data are retrieved and considered examples
of promising customers, the remaining customers in the
customer table are considered as nonpromising.
Classification is performed based on this training set.
Line specifies that the mining results are to be displayed
as a set of rules.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
