⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eclat.html

📁 本程序是基于linux系统下c++代码
💻 HTML
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><title>R: Mining Associations with Eclat</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="../../R.css">
</head><body>

<table width="100%" summary="page for eclat {arules}"><tr><td>eclat {arules}</td><td align="right">R Documentation</td></tr></table>
<h2>Mining Associations with Eclat</h2>


<h3>Description</h3>

<p>
Mine frequent itemsets with the Eclat algorithm.
This algorithm uses simple intersection operations for equivalence
class clustering along with bottom-up lattice traversal.
</p>


<h3>Usage</h3>

<pre>
eclat(data, parameter = NULL, control = NULL)
</pre>


<h3>Arguments</h3>

<table summary="R argblock">
<tr valign="top"><td><code>data</code></td>
<td>
object of class
<code><a href="transactions-class.html">transactions</a></code> or any data structure
which can be coerced into
<code><a href="transactions-class.html">transactions</a></code> (e.g., binary
<code>matrix</code>, <code>data.frame</code>).</td></tr>
<tr valign="top"><td><code>parameter</code></td>
<td>
object of class
<code><a href="ASparameter-class.html">ECparameter</a></code> or named list (default
values are: support 0.1 and maxlen 5)</td></tr>
<tr valign="top"><td><code>control</code></td>
<td>
object of class
<code><a href="AScontrol-class.html">ECcontrol</a></code> or named list for
algorithmic controls.</td></tr>
</table>

<h3>Details</h3>

<p>
Calls the C implementation of the Eclat algorithm by Christian 
Borgelt for mining frequent itemsets.
</p>


<h3>Value</h3>

<p>
Returns an object of class <code><a href="itemsets-class.html">itemsets</a></code>.</p>

<h3>References</h3>

<p>
Mohammed J. Zaki, Srinivasan Parthasarathy, Mitsunori Ogihara, and Wei
Li. (1997)
<EM>New algorithms for fast discovery of association rules</EM>.
Technical Report 651, Computer Science Department, University of
Rochester, Rochester, NY 14627.
</p>
<p>
Christian Borgelt (2003) Efficient Implementations of Apriori and
Eclat. <EM>Workshop of Frequent Item Set Mining Implementations</EM>
(FIMI 2003, Melbourne, FL, USA).
</p>


<h3>See Also</h3>

<p>
<code><a href="ASparameter-class.html">ECparameter-class</a></code>,
<code><a href="AScontrol-class.html">ECcontrol-class</a></code>,
<code><a href="transactions-class.html">transactions-class</a></code>,
<code><a href="itemsets-class.html">itemsets-class</a></code>,
<code><a href="apriori.html">apriori</a></code>
</p>


<h3>Examples</h3>

<pre>
data("Adult")
## Mine itemsets with minimum support of 0.1.
itemsets &lt;- eclat(Adult,
                  parameter = list(supp = 0.1, maxlen = 15))
</pre>



<hr><div align="center">[Package <em>arules</em> version 0.6-6 <a href="00Index.html">Index]</a></div>

</body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -