<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Ontology-Driven Association Rule Extraction: A Case Study</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Andrea</forename><surname>Bellandi</surname></persName>
							<email>a.bellandi@imtlucca.it</email>
							<affiliation key="aff0">
								<orgName type="institution">IMT -Lucca Institute for Advanced Studies Piazza S. Ponziano</orgName>
								<address>
									<postCode>6 -55100</postCode>
									<settlement>Lucca</settlement>
									<country key="IT">ITALY</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Barbara</forename><surname>Furletti</surname></persName>
							<email>b.furletti@imtlucca.it</email>
							<affiliation key="aff0">
								<orgName type="institution">IMT -Lucca Institute for Advanced Studies Piazza S. Ponziano</orgName>
								<address>
									<postCode>6 -55100</postCode>
									<settlement>Lucca</settlement>
									<country key="IT">ITALY</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Valerio</forename><surname>Grossi</surname></persName>
							<email>vgrossi@di.unipi.it</email>
							<affiliation key="aff1">
								<orgName type="department">Department of Computer Science</orgName>
								<orgName type="institution">University of Pisa Largo B. Pontecorvo</orgName>
								<address>
									<postCode>3 -56127</postCode>
									<settlement>Pisa</settlement>
									<country key="IT">ITALY</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Andrea</forename><surname>Romei</surname></persName>
							<email>romei@di.unipi.it</email>
							<affiliation key="aff1">
								<orgName type="department">Department of Computer Science</orgName>
								<orgName type="institution">University of Pisa Largo B. Pontecorvo</orgName>
								<address>
									<postCode>3 -56127</postCode>
									<settlement>Pisa</settlement>
									<country key="IT">ITALY</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Ontology-Driven Association Rule Extraction: A Case Study</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">1D172429565B9752D0596C12E90388AF</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-24T08:37+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>This paper proposes an integrated framework for extracting Constraint-based Multi-level Association Rules with an ontology support. The system permits the definition of a set of domain-specific constraints on a specific domain ontology, and to query the ontology for filtering the instances used in the association rule mining process. This method can improve the quality of the extracted associations rules in terms of relevance and understandability.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1">Introduction</head><p>The Data Mining (DM) results, i.e. the models, represent relations in the data and are usually employed for classifying new data or for describing correlations hidden in the data. In this paper, we focus on the Association Rule Mining as originally introduced by Agrawal et al. in <ref type="bibr" target="#b1">[2]</ref> and on a way for improving the process results. There are several ways to reduce the computational complexity of Association Rule Mining and to increase the quality of the extracted rules: (i) reducing the search space; (ii) exploiting efficient data structures; (iii) adopting domain-specific constraints. The first two classes of optimizations are used for reducing the number of steps of the algorithm, for re-organizing the itemsets, for encoding the items, and for organizing the transactions in order to minimize the algorithm time complexity. The third class tries to overcome the lack of user data-exploration by handling domain-specific constraints. This paper focuses on these optimizations by representing a specific domain by means of an ontology and driving the extraction of association rules by expressing constraints. The aim of this work is to reduce the "search space" of the algorithm and to improve the significance of the association rules.</p><p>Paper Organization. Section 2 provides some notions of OWL ontologies, data mining and association rules. Section 3 introduces the syntax of the constraints and describes the process. Section 4 presents a case study based on a real dataset. Section 5 discusses the related works and section 6 proposes some ideas for further improvements.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>OWL Overview</head><p>OWL is a family of three ontology languages: OW L − Lite, OW L − DL, and OW L − F ull. The first two languages can be considered syntactic variants of the SHIF(D) and SHOIN (D) description logics (DL), respectively, whereas the third language was designed to provide full compatibility with RDF(S). We focus mainly on the first two variants of OWL because OWL-Full has a nonstandard semantics that makes the language undecidable and therefore difficult to implement. OWL comes with several syntaxes, all of which are rather verbose. Hence, in this paper we use the standard DL syntax <ref type="bibr" target="#b2">[3]</ref>. The main building blocks of DL knowledge bases are concepts (or classes), representing sets of objects, roles (or properties), representing relationships between objects, and individuals representing specific objects. OWL ontologies consist of two parts: intensional and extensional. The former part consists of a T Box and an RBox, and contains knowledge about concepts (i.e. classes) and the complex relations between them (i.e. roles). The latter part consists of an ABox, and contains knowledge about entities and how they relate to the classes and roles from the intensional part. In our scenario, TBox and RBox shall provide supermarket domain knowledge, while all the supermarket items constitute ABoxes which are interlinked with intensional knowledge.</p><p>The semantics for OWL DL is fairly standard. </p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Data Mining and Association Rules</head><p>Data mining is the analysis of (often large) observational data sets to find unsuspected relationships and to summarize the data in novel ways that are both understandable and useful to the data owner. The relationships and summaries derived through a data mining exercise are often referred to as models or patterns. The main tasks of Data mining are generally divided in two categories: P redictive and Descriptive. The objective of the predictive tasks is to predict the value of a particular attribute based on the values of other attributes, while for the descriptive ones, is to derive patterns (correlations, trends, clusters, ...) that summarize the relationships in the data. The Association rule mining is one of the major techniques of data mining and it is perhaps the most common form of local-pattern discovery in unsupervised learning systems. These methodologies retrieve all possible interesting patterns in the database. Given a database D of transactions, where each transaction T ∈ D is a set of items, an association rule is a (statistical) implication of the form X → Y , where X, Y ∈ D and X ∩ Y = ∅. A rule X → Y is said to have a support (or frequency) factor s if and only if, at least s% of the transations in T satisfy X ∪ Y . A rule X → Y is satisfied in the set of transactions T with a conf idence factor c if and only if, at least c% of the transactions in T that satisfy X also satisfy Y . The support is a measure of statistical significance, whereas the confidence is a measure of the strength of the rule. A rule is said to be "interesting" if its support and confidence are greater than user-defined thresholds sup min and con min , respectively, and the objective of the mining process is to find all such interesting rules <ref type="bibr" target="#b12">[13]</ref>.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">Description of the approach</head><p>In this section, we describe our approach for guiding the extraction process of Multi-level Constraint-based Association Rules with an ontology support. Our scenario consists of the set of components shown in figure <ref type="figure" target="#fig_1">1</ref>. The ontology (O D ) describes the domain of interest (D) and it is used as a means of meta-data representation. The interpretation module translates the requests of an user (user constraints) into a set of f ormal constrains (Q D defined on O D ) so that they can be supplied to the Ontology Query Engine by means of a suitable query language. The aim of these constraints is to exclude some items from the output association rules, or to characterize interesting items according to an abstraction level. The user constraints syntax is formalized in table 1. It includes both pruning constraints, used for filtering a set of non-interesting items, and abstraction constraints, which permit a generalization of an item to a concept of the ontology. By using pruning constraints, one can specify the exclusion of a set of items from the input transactions set, and, as a consequence, from the extracted rules. This kind of constraints refers either to a single item, or to an ontology concept, and they can include a condition expressed on a set of ontology properties. Abstraction constraints permit exploring different levels of the ontology concepts. The generalization to a predefined level of the hierarchy I is the set of items (i1, i2, ...in ∈ I). C is the set of the concepts of the ontology (c1, c2, ...cn ∈ C). Pc is the set of the properties of the concept c ∈ C (p1, p2, ...pn ∈ Pc). condc is a Description Logic expression. ALL represents all the instances defined in the ontology.</p><p>A constraint is defined on I, C and PC in the following form:  improves the support of association rules, and consequently avoids the discovery of a massive quantity of useless rules, especially in case of sparse data.</p><p>The ontology query engine interacts with the ontology by performing the set Q D of queries. The resulting R D instances set, is used by the DB query engine for retrieving the instances that contain the filtered/abstracted/pruned items (i.e., the items specified in R D ). The data base is the repository of the data to pass in input to the data mining tools. The box "Data Mining Tools" contains the tool for analyzing and processing the data. In our context we refer to a specific algorithm for extracting association rules, but we would like to point out that the system can operate with other kinds of DM tools. The support and the confidence measures are initially provided by the user.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">Case study: a Market Basket Analysis application</head><p>In this section we show the results of a case study by using data taken from a national supermarket, and stored in a relational database (DB). The aim of this study is to construct and test the framework described in the previous section with real data and w.r.t. specific market analysis. In this case, the data consist of a set of purchase transactions T = [transID, item], where transID is the cash voucher identification and item is the purchased item. The DB contains 775,000 transactions. According to the approach proposed in sec. 3, meta-data (description of the items) and data to analyze have been organized respectively in separate structures:</p><p>The ontology -contains the description of the items and their hierarchical organization. Starting from the DB structure (tables and fields) <ref type="foot" target="#foot_0">3</ref> , we derived the OWL ontology schema mapping the fields of the DB tables in classes and properties of the ontology. Also, we automatically filled up the ontology with about 30,000 items, and their attributes (approximately 100).</p><p>Let us consider the item Vodka Keglevich Melon. The DB -contains the transactions T .</p><p>The experimentation has been conducted using SeRQL ("Sesame RDF Query Language") <ref type="bibr" target="#b3">[4]</ref> language for querying the ontology and the Apriori algorithm <ref type="bibr" target="#b0">[1]</ref> for mining association rules. SeRQL is an RDF/RDFS query language that is currently being developed by Aduna as part of Sesame <ref type="bibr" target="#b4">[5]</ref>. It combines the best features of other (query) languages (RQL, RDQL, N-Triples, N3) and adds some of its own. Sesame is a RDF database which can be employed to manage RDF triples.</p><p>In the first two tests we abstract all items to two upper levels (level L2 and level L1) for verifying what categories of items are bought together. In this way we abstract all items to only 14 high level concepts in the first case and to only 4 high level concepts in the second one. These abstraction constraints can be expressed respectively as:</p><formula xml:id="formula_0">Query 1 ≡ abstract 2 (ALL) Query 2 ≡ abstract 1 (ALL)</formula><p>The third test concerns an investigation for organizing a future promotional campaign during the holidays (Christmas and Easter). The focus is on typical sweets and cakes (with well-known brands) of the two holidays, and the alcoholic drinks. The objective is to verify how those articles are related. All kinds of sweets/cakes are abstracted to Foodstuffs (associated with the item brand) and all kinds of alcoholic drinks to Drinks. These constraints can be expressed as:</p><formula xml:id="formula_1">Query 3 ≡ prune (∃hasBrand.= null ) (ALL)∧ abstract (∃hasBrand.&lt;&gt; null ) (Alcoholic, Drinks) ∧ abstract (∃hasBrand.&lt;&gt; null ) (Sweets, F oodStuf f s) ∧ abstract ((∃hasRecurrence.= Easter ) (∃hasRecurrence.= Christmas )) (Sweets, F oodStuf f s)</formula><p>The part of the ontology schema (i.e. the part of the DL knowledge base) related to the Query 3 can be expressed by the following TBox fragment: According to the interpretation function I = (∆ I , • I ) defined in section 2, the semantic interpretation of the conditions expressed by the abstract clauses is: where {A} and {S} are the instances sets of the classes Alcoholic and Sweets respectively, with a ∈ {A} and s, p, q ∈ {S}; b a , b s are any well-known brands of Alcoholic and Sweets respectively. The semantic expressed by prune clause is very similar to abstract so we omit it for lack of space.</p><formula xml:id="formula_2">Alcoholic (∃hasBrand.</formula><p>In the last test, we consider the case in which the supermarket augments its services by introducing a new department (Assisted Service). This event introduces an innovation in the supermarket domain, so we have to modify the ontology<ref type="foot" target="#foot_1">4</ref> i.e. we have to introduce a new data property, for some category (typeOfService (ToS) with enumerated type Assisted Service, Take Away, Free Service). We abstract to level L2 all the items with typeOfService equals to Assisted Service or Take Away, ignoring the others. This constraint can be expressed as:</p><formula xml:id="formula_3">Query 4 ≡ abstract 2 (∃hasT oS.= AssistedService ) (ALL) ∧ abstract 2</formula><p>(∃hasT oS.= T akeAway ) (ALL) ∧ prune ((∃hasT os.&lt;&gt; AssistedService ) (∃hasT os.&lt;&gt; T akeAway )) (ALL)</p><p>For the lack of space we omit the semantic interpretation of the Query4.</p><p>For evaluating our framework we submitted to the system the queries introduced above. Our framework automatically translates these constraints into SeRQL language for querying the ontology. In all tests we applied the Apriori implementation of the KDDML System <ref type="bibr" target="#b9">[10]</ref>, setting the support threshold to 1% <ref type="foot" target="#foot_2">5</ref> , and confidence to 50%. In Table <ref type="table" target="#tab_3">2</ref>, the five rows represent the results of the tests. The first query labeled no constraints represents the request without any constraints. #Trans reports the number of transactions that satisfy the constraints, #Items reports the total number of different articles that compose the transactions, #Itemsets and #Rules report the number of itemsets and the rules computed by the Apriori, respectively. Furthermore LI and AI contain statistical information about the number of items contained in the largest transaction, and the average number of items contained in a transaction. In figure <ref type="figure" target="#fig_5">2</ref> Query we report the supports graph of the queries. In the abscissa there are the top 50 frequent itemsets, while in the ordinate there is the support related to the i th frequent item. As you can notice, in the picture the result of Test 2 has not been reported because it contains only 15 frequent itemsets. The use of real data typically brings issues related to the quality of the extracted model. Items at the lower levels of the taxonomy may not have enough support to appear in any frequent itemsets. This aspect is underlined in figure <ref type="figure" target="#fig_5">2</ref> in which we can notice that the Query 0 retrieves only itemsets with a very low support. This is mainly due to the large number of articles. Moreover, rules extracted at the lower levels of a concept, are too much specific, and may not be interesting. Consider for example the following rule extracted at low level: The rule is not relevant due to the low support. Consider instead the following rule, that corresponds to the previous, but at an higher level of abstraction, and This rule abstracts all the items to level L2 of the ontology and each of them is selected by the typeOfService property. The information extracted from this association rule can suggest that the assisted service department has to provide to the customers also (take away) cooked meals (roastedchicken, cookedlasagne).</p><p>In general, items abstracted at the higher levels, tend to have higher support counts. This fact increases the quality of the extracted rules, and as consequence, helps the analyst in the decision support. Association rules related to Query 3, for example, emphasize the concept of multi-level rule correlating concepts at different abstraction level. For example the concept FoodStuffs (level L2) with BAU LI and M OT T A as brands, and Drinks (level L2) with AST I<ref type="foot" target="#foot_3">6</ref> , are related to Red M eats (level L7) slaughtered and packed by the supermarket. It can suggest to the analyst some marketing decisions on these products during Easter or Christmas period.</p><p>The study of multi-level association rules is well-known in literature, and in this context, our work may not seem innovative. The focus of our approach is the introduction of the expressive power of ontologies for constraint-based multilevel association rule mining. The main advantages can be summarized in terms of extensibility and flexibility. Our framework is extensible because data properties and concepts can be introduced in the ontology without either changing the relational database containing the transaction, or the implementation of our framework. The flexibility is guaranteed from the separation of the data to analyze (the transactions) from the meta-data (description of the data). Furthermore it interesting to point out that our approach is general, and can be adapted to further data mining analysis.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5">Related Works</head><p>Methods to define and integrate item constraints are originally introduced by Srinkant and Agrawal in <ref type="bibr" target="#b10">[11]</ref> and by Han and Fu in <ref type="bibr" target="#b6">[7]</ref>. Recently, in <ref type="bibr" target="#b11">[12]</ref> and <ref type="bibr" target="#b8">[9]</ref>, we can find the attempt to integrate the item-constraints evaluation directly in the rule extraction algorithm. In <ref type="bibr" target="#b11">[12]</ref>, the authors concentrate on improving the Apriori algorithm, while in <ref type="bibr" target="#b8">[9]</ref> the authors focus on the definition of a two-phase approach: specification of the constraint association queries, and submission of the constraints in the mining process.</p><p>Our approach follows the research line proposed by the cited works, nevertheless it introduces three main differences: (i) we employ an ontology to represent an item taxonomy; (ii) constraints can be defined on the basis of specific properties of the items; (iii) by using an ontology instead of a taxonomy, a new item property or a concept can be added without re-engineering the (meta-data) representation model or the relational database.</p><p>Other studies concern the merging of the association rules mining with a domain ontology. In <ref type="bibr" target="#b5">[6]</ref>, the authors use an ontology to improve the counting support during the association rule mining phase by using a taxonomy. Another interesting approach is presented in <ref type="bibr" target="#b7">[8]</ref>, where an ontology-based algorithm is employed for discovering rules of product fault causes, in an attempt to discover high-level clearer rules. In this case, the system enables the user only to specify an ideal level of generality of the extracted rules. In addition, our framework also enables the users to specify different levels of abstraction for different items, depending on the specific properties of such items. A concise syntax has been defined to this aim. In our view, the use of an ontology enforces constraints definition, enabling us to use data properties in domain-specific constraints.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="6">Conclusions and future works</head><p>We proposed an integrated framework for the extraction of constraint-based multi-level association rules with the aid of an ontology. Our system permits the definition of domain-specific constraints by using the ontology for filtering the instances used in the association rule mining process. The main advantages of the proposed framework can be summarized in terms of extensibility and flexibility.</p><p>In our case study, the supermarket domain is modeled only by classes and data properties and it would be very interesting to study: (i) how object properties (and more complex logical relationships) can be employed in our framework;</p><p>(ii) what aspects they can improve. Other important future works are the possibility of modeling the antecedent and the consequent of an association rule as ontology concepts in order to express constraints on the association rules structure. Furthermore we could improve the system by integrating the constraints evaluation directly in the mining algorithm.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head></head><label></label><figDesc>An interpretation I = (∆ I , • I ) is a tuple where ∆ I , the domain of discourse, is the union of two disjoint sets ∆ I O (the object domain) and ∆ I D (the data domain) and I is the interpretation function that gives meaning to the entities defined in the ontology. I maps each OWL class C to a subset C I ⊆ ∆ I O , each object property P Obj to a binary relation P I Obj ⊆ ∆ I O × ∆ I O , and each datatype property P Data to a binary relation P I Data ⊆ ∆ I O × ∆ I D . The whole definition is in the OWL W3C Recommendation (http://www.w3.org/TR/owl-semantics/).</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Fig. 1 .</head><label>1</label><figDesc>Fig. 1. The system architecture.</figDesc><graphic coords="3,203.93,115.84,207.50,100.67" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_2"><head>1 .</head><label>1</label><figDesc>Pruning Constraints. A pruning constraint is of one of the following forms: (a) prune(e), where e ∈ I ∪ C ∪ {ALL}. (b) prune condc (c), where c ∈ C ∪ {ALL}. 2. Abstraction Constraints. An abstraction constraint is of one of the following forms: (a) abstract(e, c), where e ∈ I ∪ C, c ∈ C and c is a super-concept of e. (b) abstract condc 1 (c1, c2) where c1 ∈ C ∪ {ALL}, c2 ∈ C and c2 is a super-concept of c1. (c) abstract l conde (e), where e ∈ I ∪ C ∪ {ALL}, and l is a non-negative integer indicating the level of the hierarchy; cond can be unspecified.</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_3"><head></head><label></label><figDesc>&lt;&gt; null ) Sweets (∃hasBrand. &lt;&gt; null ) (∃hasRecurrence. = Easter ) (∃hasRecurrence. = Christmas ) I = Alcoholic I ∩ {xa | ∃ya.(xa, ya) ∈ hasBrand I ∧ ya = null I } ∪ Sweets I ∩ {xs | ∃ys.(xs, ys) ∈ hasBrand I ∧ ys = null I } ∩ {z | ∃w.(z, w) ∈ hasRecurrence I ∧ w = Easter I } ∪ {h | ∃k.(h, k) ∈ hasRecurrence I ∧ k = Christmas I } = {A} ∩ {xa | ∃ya.(xa, ya) ∈ {(a, ba)} ∧ ya = null} ∪ {S} ∩ {xs | ∃ys.(xs, ys) ∈ {(s, bs)} ∧ ys = null} ∩ {zs | ∃ws.(zs, ws) ∈ {(p, rp)} ∧ ws = Easter} ∪ {h | ∃ks.(hs, ks) ∈ {(q, rq)} ∧ ks = Christmas} = {A} ∩ {(a, brand)} ∪ {S} ∩ {(s, brand)} ∩ {(p, Easter)} ∪ {(q, Christmas)} = {(alcoholic, ba)} ∪ {(sweets Easter , bs)} ∪ {(sweets Christmas , bs)}</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_4"><head></head><label></label><figDesc>{bread, red wine, ham, chocolate cake} ⇒ {roasted chicken, cooked lasagne} [supp = 0.02, conf = 0.57].</figDesc></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_5"><head>Fig. 2 .</head><label>2</label><figDesc>Fig. 2. Compared Supports.</figDesc><graphic coords="8,160.70,115.84,293.94,177.34" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_0"><head>Table 1 .</head><label>1</label><figDesc>User constraints syntax.</figDesc><table /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head></head><label></label><figDesc>The correspondent hierarchical structure and the list of the item attributes are shown in the table below.</figDesc><table><row><cell></cell><cell></cell><cell></cell><cell>Hierarchical Structure</cell><cell>Attributes of Vodka</cell></row><row><cell></cell><cell cols="3">owl:Things</cell><cell>hasColour : transparent;</cell></row><row><cell>∇</cell><cell cols="3">XXX Supermarket</cell><cell>hasAlcoholicContent: high;</cell></row><row><cell></cell><cell>∇</cell><cell cols="2">L0 Foodstuffs and Drinks Department hasFlavour : Melon;</cell></row><row><cell></cell><cell></cell><cell>∇</cell><cell>L1 Drinks</cell><cell>hasBrand: Keglevich;</cell></row><row><cell></cell><cell></cell><cell></cell><cell>∇</cell><cell>L2 Vodka</cell><cell>isFizzy: No;</cell></row><row><cell></cell><cell></cell><cell></cell><cell>∇</cell><cell>L3 Spicy</cell><cell>hasPrice: EUR 7.56;</cell></row><row><cell></cell><cell></cell><cell></cell><cell>Vodka Keglevich Melon hasSize: 70 cl;</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_3"><head>Table 2 .</head><label>2</label><figDesc>Queries summary results</figDesc><table><row><cell>ID</cell><cell cols="5">#Trans #Items #Itemsets #Rules LI AI</cell></row><row><cell>no constraints Query0</cell><cell>91563</cell><cell>123</cell><cell>176</cell><cell>50</cell><cell>76 7.68</cell></row><row><cell>Test 1 Query1</cell><cell>80765</cell><cell>11</cell><cell>524</cell><cell>1248</cell><cell>12 3.86</cell></row><row><cell>Test 2 Query2</cell><cell>76323</cell><cell>4</cell><cell>15</cell><cell>31</cell><cell>4 2.83</cell></row><row><cell>Test 3 Query3</cell><cell>352</cell><cell>33</cell><cell>60</cell><cell>9</cell><cell>6 2.17</cell></row><row><cell>Test 4 Query4</cell><cell>69534</cell><cell>10</cell><cell>200</cell><cell>258</cell><cell>10 4.03</cell></row></table></figure>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="3" xml:id="foot_0">We considered the DB table named Marketing that, for each article, specifies a hierarchical structure w.r.t. the department organization in the supermarket.</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="4" xml:id="foot_1">Notice that, the introduction of a new property does not imply the re-engineering of the structure, but only the introduction of the property in the higher classes so that the property is inherited by each subclasses.</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="5" xml:id="foot_2">This low support threshold is dued to the large number of items.</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="6" xml:id="foot_3">M OT T A, BAU LI and AST I are Italian food and drink brands.</note>
		</body>
		<back>

			<div type="acknowledgement">
<div xmlns="http://www.tei-c.org/ns/1.0"><p>Acknowledgement. This work is supported by M U SIN G project (www.musing.eu/).</p></div>
			</div>

			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">Fast algorithms for mining association rules in large databases</title>
		<author>
			<persName><forename type="first">R</forename><surname>Agrawal</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Methta</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Shafer</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Srikant</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 20th International Conference on Very Large Databases (VLDB &apos;94)</title>
				<meeting>the 20th International Conference on Very Large Databases (VLDB &apos;94)<address><addrLine>Santiago de Chile, Chile</addrLine></address></meeting>
		<imprint>
			<biblScope unit="page" from="478" to="499" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Mining association rules between sets of items in large databases</title>
		<author>
			<persName><forename type="first">R</forename><surname>Agrawal</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Srikant</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Swami</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of ACM SIGMOD Conference on Management of Data (SIGMOD &apos;93)</title>
				<meeting>ACM SIGMOD Conference on Management of Data (SIGMOD &apos;93)<address><addrLine>San Diego, CA</addrLine></address></meeting>
		<imprint>
			<biblScope unit="page" from="207" to="216" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<monogr>
		<title level="m">The Description Logic Handbook</title>
				<editor>
			<persName><forename type="first">F</forename><surname>Baader</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">D</forename><surname>Calvanese</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">D</forename><surname>Mcguinness</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">D</forename><surname>Nardi</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">P</forename><surname>Patel-Schneider</surname></persName>
		</editor>
		<imprint>
			<publisher>Cambridge University Press</publisher>
			<date type="published" when="2003">2003</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<monogr>
		<author>
			<persName><forename type="first">J</forename><surname>Broekstra</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Kampman</surname></persName>
		</author>
		<ptr target="http://www.cs.vu.nl/jbroeks/papers/SeRQL.pdf" />
		<title level="m">SeRQL: An RDF Query and Transformation Language</title>
				<imprint>
			<date type="published" when="2004">2004</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Sesame: A Generic Architecture for Storing and Querying RDF and RDF Schema</title>
		<author>
			<persName><forename type="first">J</forename><surname>Broekstra</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Kampman</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>Van Harmelen</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the first International Semantic Web Conference (ISWC 2002)</title>
		<title level="s">Lecture Notes in Computer Science</title>
		<editor>
			<persName><forename type="first">Ian</forename><surname>Horrocks</surname></persName>
		</editor>
		<editor>
			<persName><forename type="first">James</forename><surname>Hendler</surname></persName>
		</editor>
		<meeting>the first International Semantic Web Conference (ISWC 2002)<address><addrLine>Sardinia, Italy; Heidelberg Germany</addrLine></address></meeting>
		<imprint>
			<publisher>Springer Verlag</publisher>
			<date type="published" when="0912-06">June 9 12, 2002</date>
			<biblScope unit="volume">2342</biblScope>
			<biblScope unit="page">5468</biblScope>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Using an interest Ontology for Improved Support in Rule Mining</title>
		<author>
			<persName><forename type="first">X</forename><surname>Chen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">X</forename><surname>Zhou</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Scher</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Geller</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 5th International Conference of Data Warehousing and Knowledge Discovery (DaWaK 2003)</title>
				<meeting>the 5th International Conference of Data Warehousing and Knowledge Discovery (DaWaK 2003)<address><addrLine>Prague, Czech Republic</addrLine></address></meeting>
		<imprint>
			<biblScope unit="page" from="320" to="329" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">Discovery of multiple-level association rules from large databases</title>
		<author>
			<persName><forename type="first">J</forename><surname>Han</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Y</forename><surname>Fu</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 21st International Conference on Very Large Data Bases (VLDB &apos;95)</title>
				<meeting>the 21st International Conference on Very Large Data Bases (VLDB &apos;95)<address><addrLine>San Francisco, CA</addrLine></address></meeting>
		<imprint>
			<biblScope unit="page" from="420" to="431" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">Application of Data Mining in Fault Diagnosis Based on Ontology</title>
		<author>
			<persName><forename type="first">X</forename><surname>Hou</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Gu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">X</forename><surname>Shen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">W</forename><surname>Yan</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 3rd Conference on Information Technology and Applications (ICITA &apos;05)</title>
				<meeting>the 3rd Conference on Information Technology and Applications (ICITA &apos;05)<address><addrLine>Sydney, Australia</addrLine></address></meeting>
		<imprint>
			<biblScope unit="page" from="260" to="263" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">Exploratory mining and pruning optimizations of constrained associations rules</title>
		<author>
			<persName><forename type="first">R</forename><surname>Ng</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><surname>Lakshmanan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Han</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename></persName>
		</author>
		<author>
			<persName><forename type="first">Pang</forename><forename type="middle">A</forename></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 1998 ACM SIGMOD international conference on Management of data</title>
				<meeting>the 1998 ACM SIGMOD international conference on Management of data<address><addrLine>Seattle, WA</addrLine></address></meeting>
		<imprint>
			<publisher>SIGMOD</publisher>
			<biblScope unit="page" from="13" to="24" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<analytic>
		<title level="a" type="main">KDDML: a middleware language and system for knowledge discovery in databases</title>
		<author>
			<persName><forename type="first">A</forename><surname>Romei</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Ruggieri</surname></persName>
		</author>
		<author>
			<persName><forename type="first">F</forename><surname>Turini</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Data and Knowledge Engineering</title>
		<imprint>
			<biblScope unit="volume">57</biblScope>
			<biblScope unit="issue">2</biblScope>
			<biblScope unit="page" from="179" to="220" />
			<date type="published" when="2006">2006</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<analytic>
		<title level="a" type="main">Mining Generalized Association Rules</title>
		<author>
			<persName><forename type="first">R</forename><surname>Srikant</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Agrawal</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 21st International Conference on Very Large Data Bases (VLDB &apos;95)</title>
				<meeting>the 21st International Conference on Very Large Data Bases (VLDB &apos;95)<address><addrLine>San Francisco, CA</addrLine></address></meeting>
		<imprint>
			<biblScope unit="page" from="407" to="419" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<analytic>
		<title level="a" type="main">Mining Association Rules with Item Constraints</title>
		<author>
			<persName><forename type="first">R</forename><surname>Srikant</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Q</forename><surname>Vu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Agrawal</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the 3rd International Conference of Knowledge Discovery and Data Mining (KDD &apos;97)</title>
				<meeting>the 3rd International Conference of Knowledge Discovery and Data Mining (KDD &apos;97)<address><addrLine>Newport Beach, CA</addrLine></address></meeting>
		<imprint>
			<biblScope unit="page" from="67" to="73" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b12">
	<monogr>
		<title level="m" type="main">Introduction to Data Mining</title>
		<author>
			<persName><forename type="first">P</forename><forename type="middle">N</forename><surname>Tan</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Steinbach</surname></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename><surname>Kumar</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2006">2006</date>
			<publisher>Pearson International Edition -Addison Wesley</publisher>
		</imprint>
	</monogr>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
