-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathprocessmapR.R
More file actions
39 lines (36 loc) · 1.11 KB
/
processmapR.R
File metadata and controls
39 lines (36 loc) · 1.11 KB
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
#' @title processmapR - Process Maps in R
#'
#' @description This package provides several useful techniques process visualization.
#'
# @docType package
#' @name processmapR
#'
#' @import dplyr
#' @import bupaR
#' @import edeaR
#' @import ggplot2
#' @import DiagrammeR
#' @import stringr
#' @import shiny
#' @import miniUI
#' @import forcats
#' @importFrom tidyr spread
#' @importFrom glue glue
#' @importFrom hms as_hms
#' @importFrom data.table data.table as.data.table dcast.data.table := .SD .N setorder setnames
#' @importFrom purrr set_names
#' @importFrom stats median na.omit quantile sd as.formula reorder
#' @importFrom utils head setTxtProgressBar txtProgressBar data
#' @importFrom scales rescale
#' @importFrom plotly ggplotly renderPlotly plotlyOutput
#' @importFrom rlang arg_match is_integerish sym caller_env
#' @importFrom cli cli_abort cli_warn
#' @importFrom lifecycle deprecated
#' @import htmlwidgets
utils::globalVariables(c(".", ".order", "id"))
#' @useDynLib processmapR, .registration = TRUE
#' @importFrom Rcpp sourceCpp
NULL
.onUnload <- function (libpath) {
library.dynam.unload("processmapR", libpath)
}