-
Notifications
You must be signed in to change notification settings - Fork 42
/
DESCRIPTION
112 lines (112 loc) · 2.71 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
Package: arules
Title: Mining Association Rules and Frequent Itemsets
Version: 1.7-8
Date: 2024-08-21
Authors@R: c(
person("Michael", "Hahsler", , "mhahsler@lyle.smu.edu", role = c("aut", "cre", "cph"),
comment = c(ORCID = "0000-0003-2716-1405")),
person("Christian", "Buchta", role = c("aut", "cph")),
person("Bettina", "Gruen", role = c("aut", "cph")),
person("Kurt", "Hornik", role = c("aut", "cph"),
comment = c(ORCID = "0000-0003-4198-9911")),
person("Christian", "Borgelt", role = c("ctb", "cph")),
person("Ian", "Johnson", role = "ctb"),
person("Makhlouf", "Ledmi", role = "ctb")
)
Description: Provides the infrastructure for representing, manipulating
and analyzing transaction data and patterns (frequent itemsets and
association rules). Also provides C implementations of the
association mining algorithms Apriori and Eclat. Hahsler, Gruen and
Hornik (2005) <doi:10.18637/jss.v014.i15>.
License: GPL-3
URL: https://github.com/mhahsler/arules
BugReports: https://github.com/mhahsler/arules/issues
Depends:
Matrix (>= 1.4-0),
R (>= 4.0.0)
Imports:
generics,
graphics,
methods,
stats,
utils
Suggests:
arulesCBA,
arulesViz,
pmml,
proxy,
testthat,
XML
Classification/ACM: G.4, H.2.8, I.5.1
Copyright: The source code for Apriori and Eclat was obtained from
http://www.borgelt.net/ and is Copyright (C) 1996-2003 Christian
Borgelt. All other code is Copyright (C) Michael Hahsler, Christian
Buchta, Bettina Gruen and Kurt Hornik.
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
Collate:
'AAADefs.R'
'AAA_arules-package.R'
'Adult.R'
'itemMatrix.R'
'associations.R'
'transactions.R'
'tidLists.R'
'itemsets.R'
'rules.R'
'DATAFRAME.R'
'Epub.R'
'Groceries.R'
'Income.R'
'LIST.R'
'Matrix.R'
'Mushroom.R'
'SunBai.R'
'abbreviate.R'
'addComplement.R'
'appearance.R'
'apriori.R'
'c.R'
'check_installed.R'
'confint.R'
'control.R'
'coverage.R'
'crossTable.R'
'discretize.R'
'dissimilarity.R'
'duplicated.R'
'eclat.R'
'extract.R'
'fim4r.R'
'hierarchy.R'
'image.R'
'inspect.R'
'interestMeasures.R'
'is.closed.R'
'is.generator.R'
'is.maximal.R'
'is.redundant.R'
'is.significant.R'
'is.superset.R'
'itemCoding.R'
'itemFrequency.R'
'match.R'
'merge.R'
'parameter.R'
'plot.R'
'pmml.R'
'predict.R'
'random.transactions.R'
'read_write.R'
'ruleInduction.R'
'sample.R'
'sets.R'
'setsItemwise.R'
'size.R'
'sort.R'
'subset.R'
'support.R'
'supportingTransactions.R'
'unique.R'
'warm.R'