-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
1,028 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: arulesViz | ||
Version: 1.5-2 | ||
Date: 2023-03-07 | ||
Version: 1.5.2-1 | ||
Date: 2023-xx-xx | ||
Title: Visualizing Association Rules and Frequent Itemsets | ||
Authors@R: c(person("Michael", "Hahsler", role = c("aut", "cre", "cph"), | ||
email = "[email protected]", | ||
|
@@ -36,6 +36,9 @@ Suggests: datasets, | |
htmlwidgets | ||
Description: Extends package 'arules' with various visualization techniques for association rules and itemsets. The package also includes several interactive visualizations for rule exploration. Michael Hahsler (2017) <doi:10.32614/RJ-2017-047>. | ||
License: GPL-3 | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.2.3 | ||
Roxygen: list(markdown = TRUE) | ||
URL: https://github.com/mhahsler/arulesViz | ||
BugReports: https://github.com/mhahsler/arulesViz/issues | ||
Copyright: (C) 2021 Michael Hahsler |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,31 @@ | ||
import("arules") | ||
import("grid") | ||
import("ggplot2") | ||
#import("ggraph") | ||
import("tibble") | ||
import("tidyr") | ||
# NOTE: dplyr has many NAMESPACE conflicts with arules so we use :: | ||
#import("dplyr") | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
importFrom("graphics", "par", "mtext", "text", "axis", "box") | ||
importFrom("stats", "median") | ||
importFrom("methods", "is", "as", "new") | ||
|
||
# Otherwise we get: object 'guide_edge_colourbar' of mode 'function' was not found | ||
# Note: has also an alias in man page plot | ||
importFrom("ggraph", "guide_edge_colourbar") | ||
export("guide_edge_colourbar") | ||
|
||
importFrom("graphics", "plot") | ||
S3method(plot, rules) | ||
S3method(plot, itemsets) | ||
S3method(plot, grouped_matrix) | ||
|
||
export("inspectDT") | ||
S3method(inspectDT, default) | ||
S3method(inspectDT, rules) | ||
S3method(inspectDT, itemsets) | ||
S3method(inspectDT, data.frame) | ||
|
||
export( | ||
"ruleExplorer", | ||
"saveAsGraph", | ||
"associations2igraph", | ||
"rules2matrix", | ||
"rules2groupedMatrix" | ||
) | ||
S3method(inspectDT,data.frame) | ||
S3method(inspectDT,default) | ||
S3method(inspectDT,itemsets) | ||
S3method(inspectDT,rules) | ||
S3method(plot,grouped_matrix) | ||
S3method(plot,itemsets) | ||
S3method(plot,rules) | ||
export(associations2igraph) | ||
export(guide_edge_colourbar) | ||
export(inspectDT) | ||
export(ruleExplorer) | ||
export(rules2groupedMatrix) | ||
export(rules2matrix) | ||
export(saveAsGraph) | ||
import(arules) | ||
import(ggplot2) | ||
import(grid) | ||
import(tibble) | ||
import(tidyr) | ||
importFrom(ggraph,guide_edge_colourbar) | ||
importFrom(graphics,axis) | ||
importFrom(graphics,box) | ||
importFrom(graphics,mtext) | ||
importFrom(graphics,par) | ||
importFrom(graphics,text) | ||
importFrom(methods,as) | ||
importFrom(methods,is) | ||
importFrom(methods,new) | ||
importFrom(stats,median) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#' @title `r packageDescription("arulesViz")$Package`: `r packageDescription("arulesViz")$Title` | ||
#' | ||
#' @description `r sub("<[^>]+>", "", packageDescription("arulesViz")$Description)` | ||
#' | ||
#' @section Main Functions: | ||
#' | ||
#' * [`arulesViz::plot()`] plot association rules. | ||
#' * [`inspectDT()`] for interactive rule tables. | ||
#' * [`ruleExplorer()`] for interactive rule inspection with tables and graphs. | ||
#' | ||
#' @author Michael Hahsler | ||
#' | ||
#' @references | ||
#' Hahsler M (2017). arulesViz: Interactive Visualization of Association Rules with R. R Journal, 9(2), 163–175. ISSN 2073-4859, \doi{10.32614/RJ-2017-047}. | ||
#' | ||
#' @docType package | ||
#' @name arulesViz-package | ||
#' | ||
#' @import arules | ||
#' @import grid | ||
#' @import ggplot2 | ||
#' @import arules | ||
#' @import tibble | ||
#' @import tidyr | ||
|
||
# NOTE: dplyr has many NAMESPACE conflicts with arules so we use :: | ||
# import("dplyr") | ||
|
||
#' @importFrom graphics par mtext text axis box | ||
#' @importFrom stats median | ||
#' @importFrom methods is as new | ||
|
||
# Otherwise we get: object 'guide_edge_colourbar' of mode 'function' was not found | ||
# Note: has also an alias in man page plot | ||
|
||
#' @importFrom ggraph guide_edge_colourbar | ||
#' @export guide_edge_colourbar | ||
NULL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.