<?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">Association Rule Mining Methods as Means of Forming the System of Life Quality Indicators</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author>
							<persName><forename type="first">Luidmila</forename><forename type="middle">P</forename><surname>Bilgaeva</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">East Siberia State University of Technology and Managemen</orgName>
								<address>
									<settlement>Ulan-Ude</settlement>
									<country key="RU">Russia</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Erzhena</forename><surname>Ts</surname></persName>
						</author>
						<author>
							<persName><surname>Sadykova</surname></persName>
							<affiliation key="aff1">
								<orgName type="department">Baikal Institute of Nature Management SB RAS</orgName>
								<address>
									<settlement>Ulan-Ude</settlement>
									<country key="RU">Russia</country>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Gregory</forename><forename type="middle">V</forename><surname>Badmaev</surname></persName>
							<affiliation key="aff0">
								<orgName type="institution">East Siberia State University of Technology and Managemen</orgName>
								<address>
									<settlement>Ulan-Ude</settlement>
									<country key="RU">Russia</country>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Association Rule Mining Methods as Means of Forming the System of Life Quality Indicators</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">26D4FC68178791C88ACD3380B0336D82</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-23T20:35+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>
			<textClass>
				<keywords>
					<term>data mining</term>
					<term>association rule mining</term>
					<term>support</term>
					<term>confidence</term>
					<term>lift</term>
					<term>frequent itemsets</term>
					<term>truncation of candidates</term>
					<term>algorithm running time</term>
					<term>life quality indicators</term>
				</keywords>
			</textClass>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>The paper is devoted to comparing of the association rules mining methods and choosing the best method for the formation of the indicators system that affects the quality of life. Three methods are considered: AprioriTiD, FPG and ABBM. For each method, such metrics are calculated as support, confidence, lift and running time, the values of which allow you to discover the best method. It results in the extraction of useful association rules showing how life quality indicators are related to each other. Later on it can be used to solve the problems of analyzing and forecasting.</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>Association rules mining is one of the modern technology tasks for Data Mining, which involves finding the patterns between some related events, the definition of interrelated objects and their location in the state space <ref type="bibr" target="#b12">[13]</ref>. Initially, the methods of association rules mining were created to assess the consumer basket <ref type="bibr" target="#b1">[2]</ref>. At present, the algorithms for mining of association rules are used to solve various problems associated with the identification of different regularities, for example, in medical diagnostics <ref type="bibr" target="#b4">[5]</ref>, pharmacology <ref type="bibr" target="#b10">[11]</ref>, studying of forest fires <ref type="bibr" target="#b7">[8]</ref>, etc.</p><p>In this paper, we propose to perform a comparative analysis of the association rules mining methods for the formation of a system of indicators characterizing the life quality of the population. To assess the life quality the number of indicators, such as socio-economic and environmental ones, are used. They allow you to determine the degree of satisfaction of personal material and social needs. In its turn, each indicator is characterized by a variety of factors affecting them. The association rules mining will allow forming a small number of indicators and factors, which has the greatest impact on the life quality definition. Further on, this approach can be used to solve problems of analyzing and forecasting of socio-economic processes.</p><p>As the initial data we use the classification of socio-economic and environmental indicators proposed in <ref type="bibr" target="#b11">[12]</ref>.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">Valid method choice</head><p>To select the best method for association rules mining, the authors developed certain criteria and, in accordance with them, analyzed a certain number of methods. The results are given in Table <ref type="table" target="#tab_0">1</ref>. The table shows that the AIS and SETM methods generate a large number of candidates, but cannot truncate them. As a result, the running time of these algorithms increases significantly, which makes them less popular <ref type="bibr" target="#b6">[7]</ref>.</p><p>The Apriori, AprioriTID, AprioriSome, FPG and ABBM methods do not have this disadvantage because they generate a smaller number of candidates and are able to truncate candidates, which provides fewer loads on RAM.</p><p>The analysis shows that the Apriori and AprioriTid methods proposed in <ref type="bibr" target="#b1">[2,</ref><ref type="bibr" target="#b2">3]</ref> are easy to implement, because to store intermediate results, a data structure called a table is used. The AprioriTid algorithm, unlike the Apriori algorithm, uses the transaction identifier (TID) to search for frequent itemsets, which significantly reduces the algorithm running time.</p><p>The FPG method uses a data structure called an FP-tree. It allows you to discover a frequent itemsets without candidate itemsets generation. Frequent itemsets are extracted directly from the FP-tree <ref type="bibr" target="#b9">[10]</ref>. The FPG method is complicated in implementation but it gives a gain in the algorithm running time.</p><p>The ABBM method is based on a binary matrix <ref type="bibr" target="#b5">[6,</ref><ref type="bibr" target="#b8">9]</ref>. It is complicated to implement but it is more efficient in the algorithm running time than the FPG method. This is due to the matrix columns pruning, where there are candidates of frequent itemsets having support values less than the minimum support.</p><p>In <ref type="bibr" target="#b3">[4]</ref>, we analyzed the AprioriTid method for the formation of the indicators system that affects life quality.</p><p>In this paper, having compared the AprioriTid, FPG and ABBM methods to each other on such criteria as algorithm running time, useful and confident association rules mining, we propose to apply the ABBM method to solve this problem.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">Basic metrics of association rules mining</head><p>There are many techniques which allow us solving the problem of association rules mining. They have the same mathematical approach but are different in their implementation methods. Let us consider the basic theoretical principles of these methods <ref type="bibr" target="#b13">[14]</ref>.</p><p>The association rule of context K is an expression of the form A → B, where</p><formula xml:id="formula_0">A, B ⊆ M . The context K is a tuple (G, M, I), where G is a set of objects, M is a set of features, but I ⊆ G × M .</formula><p>When association rules are searched, special metrics are used: Support, Confidence, Lift.</p><p>Association rule A → B Support is a quantity defined by the formula:</p><formula xml:id="formula_1">Support(A → B) = |(A ∪ B) | |G|<label>(1)</label></formula><p>The Support value indicates which part of the G objects contains A ∪ B.</p><p>The Confidence of the association rules is defined by the formula:</p><formula xml:id="formula_2">Confidence(A → B) = |(A ∪ B) | |A |<label>(2)</label></formula><p>The Confidence value shows, which part of the objects that contain A, also contains A ∪ B.</p><p>The following quantity is called the association rule utility (Lift):</p><formula xml:id="formula_3">Lift(A → B) = |(A ∪ B) | |A | × |B |<label>(3)</label></formula><p>In other words, the utility is the ratio of Confidence(A → B) to the Support(B). The Lift value indicates how useful the rule is. If the found utility value is more than 1, then the rule is considered to be useful.</p><p>The task of association rules mining is to find all association rules of the context for which the support and confidence values exceed the certain set values min_support and min_confidence, correspondingly.</p><p>First, the transaction database is scanned where transactions consisting of various elements are stored.</p><p>Then we carry out a search for frequent itemsets from 1-itemsets, 2-itemsets, 3-itemsets, etc. For this, such data structures, as a table, tree or binary matrix are used, depending on the method used.</p><p>The search of frequent itemsets is limited to the minimum support value of min_support, which is set by the user <ref type="bibr" target="#b1">[2]</ref>. The association rule mining is performed in frequent itemsets and is limited to the value of the minimum confidence of min_confidence and utility (Lift). Usually the minimum confidence is set by every user.</p><p>4 Software of association rules mining</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.1">Software architecture development</head><p>To solve the problem of association rules mining, the special software was developed. Its architecture is shown in Fig. <ref type="figure" target="#fig_0">1</ref>. The software consists of three modules: a user interface, computational module, database controller.</p><p>The user interface module is a set of dialog boxes that serves to provide interaction of the software modules and the user. When the software is started, the main window and the window for displaying the service information are opened. The main window consists of a control panel and a results panel. Using the control panel, the entire system of association rules mining is managed. The output pane consists of two windows: "Useful Rules", "Description".</p><p>The "Useful Rules" window displays all the useful and trustworthy rules. If you choose one of the rules there, then you can see the names of the indicators included in the associative rule and the values of its metrics, such as support, confidence and lift, in the "Description" window.</p><p>It should be noted that in the associative rule, all the indicators are presented in an encoded form, so the "Description" window allows you to analyze the indicators that are part of the rule.</p><p>The database controller is used to access the database. The database is represented as xml format files and consists of four tables: experiments, transactions, attributes (items), results. Input to the database is performed by importing some data from an Excel file. A transaction is a set of attributes that characterize a subject area under analysis, for example, "Lifetime". Each attribute is encoded with a unique integer value which identifies the former in a database.</p><p>The computing module is a software implementation of the AprioriTid, FPG, ABM algorithms for the association rules mining. To start calculations, you need to select one of the algorithms in the main program frame and specify its settings: minimum support (minsup), minimum confidence (minconf), utility (lift).</p><p>The program allows you saving the results in a database.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4.2">Association rules mining algorithms</head><p>In this paper, FPG and ABM the algorithms are presented. The AprioriTid algorithm was considered in <ref type="bibr" target="#b4">[5]</ref>.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>FPG Algorithm</head><p>The basis of the Frequent Pattern-Growth method is the transformation of the transaction database into a tree structure, called the tree of frequent datasets (Frequent-Pattern Tree or FP-tree). The block diagram of the FPG algorithm is shown in Fig. <ref type="figure" target="#fig_1">2</ref>.</p><p>The transaction database is scanned first, and frequent itemsets are selected. These are the items, the number of which is bigger and equal to the minimum support value in various transactions.</p><p>1. These frequent itemsets are sorted in descending order of their support values, for example, (c, 5), (b, 4), (a, 3). 2. After sorting, the root node of the FP tree is created, which is denoted as ROOT.</p><p>The tree construction begins with the enumeration of transactions. The tree is being constructed according the following rule. If for the next transaction tree element there is a node which name coincides with the element name, then the element does not create a new node, and the index of the corresponding node in the tree is increased by 1. Otherwise, a new node for this item is created and an index 1 is assigned to it. 3. Then you need to look through all the items in the loop and find all the paths in the tree that lead to the current item nodes. For each path, you have to calculate how many times the current item takes place in it and put it in a 2-tuple (set, index). 4. Next, remove the item itself (i.e. the set suffix) from the paths leading to it (i.e. the dial prefix). 5. Count how many times each item appears in the paths prefixes got in the previous step, and sort them in descending order of these values, getting a new set of transactions. It is based on the construction of a new FP-tree which is called a conditional FP-tree, since it is associated with only one object. 6. In this FP-tree, you need to find all the items (nodes) for which support (the number of occurrences in the tree) is equal to the minimum support or more. If the item occurs two or more times, then its indices (the occurrence frequencies in the conditional basis) are summed. Starting from the tree root, you are to record the paths that lead to each node for which the support or index is bigger or equal to the minimum support. Then you return the item (the template suffix) removed earlier and count the index or support obtained as a result. This result will be frequent itemsets.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>ABBM Algorithm</head><p>An algorithm block diagram based on a binary matrix is shown in Fig. <ref type="figure">3</ref>.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>Fig. 3. Block diagram of the ABBM algorithm</head><p>The method essence is to mine multi-level association rules using the hierarchies' concept. The algorithm begins with the taxonomy coding. Then the first level of the H = 1 hierarchy is determined. Next, the transaction database is being converted to a binary matrix, and the minimum support value for this level is set. After that, we look for frequent 1-itemsets which are candidates for the rules. For each of them, support is calculated (i.e. the number of their repetitions in all the transactions involved in the experiment).</p><p>Next, the matrix columns are clipped, items support of which are less than the minimum support. Then 2-itemsets, 3-itemsets, . . . , i-itemsets are generated in a loop by means of conjunction, where 2 ≤ i ≤ k and k ≤ H max .</p><p>For each of the following hierarchy level, the above stated steps (starting with step 4) are repeated. Once the maximum hierarchy level is reached, the algorithm is completed. Association rules are generated from the found of frequent itemsets.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5">The experiments results</head><p>To implement the association rules mining for indicators that affect the life quality, the system of indicators proposed by the authors in <ref type="bibr" target="#b11">[12]</ref> was used. It was comprised of 46 indicators and attributes, including 8 indicators and 38 attributes which affect one or another indicator in different combinations. Five experiments were performed for which two indicators and seventeen attributes were selected. First, all the indicators and attributes of the system were encoded, then 30 transactions with the number of items from five to eleven were generated from the codes. For example, in the fifth experiment, the first transaction contains nine elements and has the following form: 91, 92, 93, 94, 95, 96, 97, 98, 99.</p><p>All experiments were carried out on a personal computer with the following characteristics: processor -AMD FX-6350 3.90GHz, 6 core; RAM -8GB; Video card -NVIDIA GeForce GTX580 3GB; External memory -SSD Kingston 120GB; Operating system -Windows 10. The running time of the association rules mining algorithms was measured in ticks, where 1 tick is equal 1/10000000 seconds according to <ref type="bibr" target="#b0">[1]</ref>.</p><p>To determine the running time of the AprioriTid, FPG and ABBM algorithms, the association rules mining was carried out within the following parameters: min_support = 3; min_confidence = 0.8; lift &gt; 1.</p><p>The graph in Fig. <ref type="figure" target="#fig_2">4</ref> shows how the algorithm running time and the number of transactions are correlated. The graph demonstrates that with 30 transactions the ABBM algorithm is executed 12 times faster than the AprioriTid algorithm and 1.6 times faster than the FPG algorithm.</p><p>Within the same parameters, a graph of relation between the rules number and the transactions number was constructed. It is presented in Fig. <ref type="figure" target="#fig_3">5</ref>.</p><p>The graph shows that the number of rules generated with the AprioriTid method is 2.2 times more than that with the FPG and ABBM ones. It is due to the antimonotonicity property of the AprioriTid method. When you add new items to a transaction, all frequent transaction itemsets are saved. As a result, the number of new frequent itemsets increases thus the number of generated rules increases too.</p><p>For the next experiment, we set the min_support parameter equal to 10, the min_confidence and lift parameters remained the same as in the previous two experiments. The number of transactions was 20. It was done to generate a small number of rules.  The experiment resulted in obtaining five valid and useful association rules with the AprioriTid and ABBM methods and six rules by the FPG method. Since the association rule is an implication, we united them by means of conjunction. Table <ref type="table" target="#tab_1">2</ref> shows the results of the rule generation. The rules (92 → 98) ∧ (94 → 98) ∧ (98 → 100) ∧ (98 → 102) ∧ (97 → 98), obtained by the ABBM method, mean: (92 and 94 and 97) affect 98, and 98 in its turn affects (100 and 102).</p><p>The table analysis shows that the rules obtained with the AprioriTid and ABBM methods are the same and include six attributes: 92, 94, 97, 98, 100, 102, while the rules generated with the FPG method differ from them and include only five attributes: 93, 94, 97, 98, 102. They have four attributes in common: 94, 97, 98, 102. Since the two methods include the same attributes, they can be totally included in the life quality indicators system to further solve the problems of analyzing and forecasting. These indicators and attributes are as follows: 92 -Fiscal capacity per capita; 93 -Retail turnover per capita; 94 -Volume of paid services provided per capita; 97 -The growth rate of the minimum living wage; 98 -GRP per capita; 100 -The proportion of the population whose incomes are below the minimum living wage; 102 -Employment level.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="6">Conclusion</head><p>Computational experiments were carried out with the developed software. They enabled us to obtain valid and useful association rules for the population life quality indicators. The correlation between the algorithms running time and the number of transactions was revealed. It was found that the ABBM method was the most efficient. The FPG method is 1.6 times slower than the ABBM method.</p><p>The correlation between the number of rules and the number of transactions was obtained. It demonstrates that the more transactions are present, the more rules are generated. As for the AprioriTid method it generates 2.1 times more rules than the ABBM and FPG methods because of its antimonotonicity property. This fact negatively influences on the AprioriTid algorithm running time.</p><p>The experiments results demonstrated that application of association rules mining methods will allow identifying the most significant indicators in any subject area. Further on we can use these indicators to solve various problems of analyzing and forecasting.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_0"><head>Fig. 1 .</head><label>1</label><figDesc>Fig. 1. Architecture of association rules mining software</figDesc><graphic coords="4,181.38,283.59,252.60,85.20" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_1"><head>Fig. 2 .</head><label>2</label><figDesc>Fig. 2. Block diagram of the FPG algorithm</figDesc><graphic coords="6,233.05,115.83,149.25,477.00" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_2"><head>Fig. 4 .</head><label>4</label><figDesc>Fig. 4. Graph of relation between the algorithm running time and the number of transactions</figDesc><graphic coords="9,192.03,381.04,231.30,212.85" type="bitmap" /></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" xml:id="fig_3"><head>Fig. 5 .</head><label>5</label><figDesc>Fig. 5. Graph of relation between the number of rules and the number of transactions</figDesc></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>Comparative analysis of association rules mining methods</figDesc><table><row><cell></cell><cell></cell><cell></cell><cell></cell><cell>Criteria</cell><cell></cell><cell></cell></row><row><cell cols="2">No Methods</cell><cell>Implemen-</cell><cell>Small</cell><cell>Small</cell><cell>ID transac-</cell><cell>Candidates'</cell></row><row><cell></cell><cell></cell><cell>tation</cell><cell>number of</cell><cell>running</cell><cell>tions</cell><cell>truncation</cell></row><row><cell></cell><cell></cell><cell>simplicity</cell><cell>candidates</cell><cell>time</cell><cell>application</cell><cell>possibility</cell></row><row><cell>1</cell><cell>AIS</cell><cell>+</cell><cell>-</cell><cell>-</cell><cell>-</cell><cell>-</cell></row><row><cell>2</cell><cell>SETM</cell><cell>+</cell><cell>-</cell><cell>-</cell><cell>+</cell><cell>-</cell></row><row><cell>3</cell><cell>Apriori</cell><cell>+</cell><cell>+</cell><cell>+</cell><cell>-</cell><cell>+</cell></row><row><cell cols="2">4 AprioriSome</cell><cell>-</cell><cell>+</cell><cell>+</cell><cell>-</cell><cell>+</cell></row><row><cell cols="2">5 AprioriTID</cell><cell>+</cell><cell>+</cell><cell>+</cell><cell>+</cell><cell>+</cell></row><row><cell>6</cell><cell>FPG</cell><cell>-</cell><cell>+</cell><cell>+</cell><cell>-</cell><cell>+</cell></row><row><cell>7</cell><cell>ABBM</cell><cell>-</cell><cell>+</cell><cell>+</cell><cell>+</cell><cell>+</cell></row></table></figure>
<figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_1"><head>Table 2 .</head><label>2</label><figDesc>Association Rules</figDesc><table><row><cell>Method</cell><cell>Association Rules</cell></row><row><cell>AprioriTid</cell><cell>(92 → 98) ∧ (94 → 98) ∧ (98 → 100) ∧ (98 → 102) ∧ (97 → 98)</cell></row><row><cell>FPG</cell><cell>(93 → 94)∧(94 → 97)∧(94 → 102) ∧(98 → 94)∧(98 → 97)∧(98 → 102)</cell></row><row><cell>ABBM</cell><cell>(92 → 98) ∧ (94 → 98) ∧ (98 → 100) ∧ (98 → 102) ∧ (97 → 98)</cell></row></table></figure>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<monogr>
		<ptr target="https://docs.microsoft.com/ru-ru/dotnet/csharp/language-reference" />
		<title level="m">Electronic library of reference materials of Microsoft for the C# language</title>
				<imprint/>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Fast discovery of association rules</title>
		<author>
			<persName><forename type="first">R</forename><surname>Agrawal</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Mannila</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Srikant</surname></persName>
		</author>
		<author>
			<persName><forename type="first">H</forename><surname>Toivonen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">I</forename><surname>Verkamo</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Advances in Knowledge Discovery and Data Mining</title>
				<meeting><address><addrLine>Menlo Park, CA, USA</addrLine></address></meeting>
		<imprint>
			<publisher>American Association for Artificial Intelligence</publisher>
			<date type="published" when="1996">1996</date>
			<biblScope unit="page" from="307" to="328" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Mining sequential patterns</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>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the Eleventh International Conference on Data Engineering</title>
				<meeting>the Eleventh International Conference on Data Engineering<address><addrLine>Washington, DC, USA</addrLine></address></meeting>
		<imprint>
			<publisher>IEEE Computer Society</publisher>
			<date type="published" when="1995">1995</date>
			<biblScope unit="page" from="3" to="14" />
		</imprint>
	</monogr>
	<note>ICDE &apos;95</note>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">Formation of life quality indicators system through search algorithm of association rules</title>
		<author>
			<persName><forename type="first">L</forename><surname>Bilgaeva</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Shirapov</surname></persName>
		</author>
		<author>
			<persName><forename type="first">G</forename><surname>Badmaev</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the Work-shop on CMDM 2016</title>
				<meeting>the Work-shop on CMDM 2016<address><addrLine>Aachen, Germany</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2016">2016</date>
			<biblScope unit="volume">1726</biblScope>
			<biblScope unit="page" from="13" to="22" />
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">Building association rules in medical diagnosis</title>
		<author>
			<persName><forename type="first">V</forename><surname>Billig</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Tsaregorodcev</surname></persName>
		</author>
		<author>
			<persName><forename type="first">O</forename><surname>Ivanova</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Programmnye produkty i sistemy: International journal</title>
		<imprint>
			<biblScope unit="volume">2</biblScope>
			<biblScope unit="page" from="146" to="157" />
			<date type="published" when="2016">2016</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Mining association rules based on boolean algorithm -a study in large databases</title>
		<author>
			<persName><forename type="first">Chinta</forename><surname>Someswara Rao</surname></persName>
		</author>
		<author>
			<persName><forename type="first">Ravi</forename><surname>Babu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Shiva Shankar</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Pradeep Kumar</surname></persName>
		</author>
		<author>
			<persName><forename type="first">V</forename><surname>Rajanikanth</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Chandra Sekhar</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">International Journal of Machine Learning and Computing</title>
		<imprint>
			<biblScope unit="volume">3</biblScope>
			<biblScope unit="issue">4</biblScope>
			<biblScope unit="page" from="347" to="351" />
			<date type="published" when="2013">2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">Set-oriented mining for association rules in relational databases</title>
		<author>
			<persName><forename type="first">M</forename><surname>Houtsma</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><surname>Swami</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings of the Eleventh International Conference on Data Engineering</title>
				<meeting>the Eleventh International Conference on Data Engineering<address><addrLine>Washington, DC, USA</addrLine></address></meeting>
		<imprint>
			<publisher>IEEE Computer Society</publisher>
			<date type="published" when="1995">1995</date>
			<biblScope unit="page" from="25" to="33" />
		</imprint>
	</monogr>
	<note>ICDE &apos;95</note>
</biblStruct>

<biblStruct xml:id="b7">
	<analytic>
		<title level="a" type="main">Search of patterns in estimation of forest fire situation by weather conditions</title>
		<author>
			<persName><forename type="first">M</forename><surname>Kostenchuk</surname></persName>
		</author>
		<author>
			<persName><forename type="first">N</forename><surname>Drozhzhin</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Belousov</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Scientific and educational problems of civil protection</title>
		<imprint>
			<biblScope unit="volume">2</biblScope>
			<biblScope unit="page" from="61" to="66" />
			<date type="published" when="2014">2014</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<analytic>
		<title level="a" type="main">An association rule mining algorithm based on a boolean matrix</title>
		<author>
			<persName><forename type="first">H</forename><surname>Liu</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Wang</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Data Science Journal</title>
		<imprint>
			<biblScope unit="volume">6</biblScope>
			<biblScope unit="page" from="559" to="565" />
			<date type="published" when="2007">2007</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<monogr>
		<author>
			<persName><forename type="first">V</forename><surname>Oreshkov</surname></persName>
		</author>
		<ptr target="https://basegroup.ru/community/articles/fpg" />
		<title level="m">FPG -an alternative search algorithm for association rules</title>
				<imprint>
			<date type="published" when="2014">2014</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b10">
	<analytic>
		<title level="a" type="main">Data mining in the pharmaceutical business</title>
		<author>
			<persName><forename type="first">N</forename><surname>Pivovarova</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Vidunova</surname></persName>
		</author>
		<ptr target="http://naukovedenie.ru/PDF/166TVN616.pdf" />
	</analytic>
	<monogr>
		<title level="j">Naukovedenie</title>
		<imprint>
			<biblScope unit="volume">8</biblScope>
			<biblScope unit="issue">6</biblScope>
			<date type="published" when="2016">2016</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<monogr>
		<author>
			<persName><forename type="first">V</forename><surname>Saktoev</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Sadykova</surname></persName>
		</author>
		<title level="m">Sustainable Development of Regional Economic Systems with Environmental Regulations</title>
				<meeting><address><addrLine>Moscow, Russia</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2011">2011</date>
		</imprint>
	</monogr>
	<note>ZAO &quot;Economy</note>
</biblStruct>

<biblStruct xml:id="b12">
	<monogr>
		<title level="m" type="main">Business Intelligence: Data Mining and Optimization for Decision Making</title>
		<author>
			<persName><forename type="first">C</forename><surname>Vercellis</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2009">2009</date>
			<publisher>Willey</publisher>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b13">
	<analytic>
		<title level="a" type="main">Association rules in data mining. Vestnik NTU</title>
		<author>
			<persName><forename type="first">T</forename><forename type="middle">A</forename><surname>Zayko</surname></persName>
		</author>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">A</forename><surname>Oleinik</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><forename type="middle">A</forename><surname>Subbotin</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">KPI</title>
		<imprint>
			<biblScope unit="volume">39</biblScope>
			<biblScope unit="page" from="82" to="95" />
			<date type="published" when="1012">1012. 2013</date>
		</imprint>
	</monogr>
</biblStruct>

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