Skip to content
This repository has been archived by the owner on Jul 29, 2019. It is now read-only.

Commit

Permalink
CRAN 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gertjanssenswillen committed Mar 23, 2018
1 parent 7d70aaf commit a442ed1
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 10 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Package: edeaR
Type: Package
Title: Exploratory and Descriptive Event-Based Data Analysis
Version: 0.7.2
Date: 2017-12-04
Version: 0.8.0
Date: 2018-03-22
Authors@R: c(person("Gert","Janssenswillen",email = "[email protected]", role = c("aut","cre")),
person("Marijke","Swennen", email = "[email protected]", role = "ctb"))
Description: Exploratory and descriptive analysis of event based data. Provides methods for describing and selecting process data, and for preparing event log data for process mining. Builds on the S3-class for event logs implemented in the package 'bupaR'.
License: MIT + file LICENSE
Depends:
R(>= 3.0.0)
Imports:
bupaR (>= 0.3.2),dplyr,data.table, ggplot2, ggthemes, glue, tibble, shiny, miniUI, tidyr, shinyTime, lubridate, purrr, stringr,rlang
bupaR (>= 0.4.0),dplyr,data.table, ggplot2, ggthemes, glue, tibble, shiny, miniUI, tidyr, shinyTime, lubridate, purrr, stringr,rlang
LazyData: true
RoxygenNote: 6.0.1
URL: https://www.bupar.net
Expand Down
3 changes: 3 additions & 0 deletions R/activity_frequency_case.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
activity_frequency_case <- function(eventlog) {
absolute <- NULL
relative <- NULL
n_labels <- NULL
n_instances <- NULL


eventlog %>%
group_by(!!case_id_(eventlog), !!activity_id_(eventlog), !!activity_instance_id_(eventlog)) %>%
Expand Down
2 changes: 1 addition & 1 deletion R/edeaR.R
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
#' @importFrom utils txtProgressBar
#' @importFrom utils data

globalVariables(c("."))
globalVariables(c(".", ".order","min_order"))
NULL
1 change: 1 addition & 0 deletions R/filter_trim.R
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ filter_trim.eventlog <- function(eventlog,

acts <- activities(eventlog) %>% pull(1)

min_order <- NULL
min_timestamp <- NULL
start_r <- NULL
end_r <- NULL
Expand Down
2 changes: 1 addition & 1 deletion R/idle_time.R
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ idle_time <- function(eventlog, level, append, units, ...) {
idle_time.eventlog <- function(eventlog,
level = c("log","case","trace","resource"),
append = FALSE,
units = c("hours","days", "weeks","mins", "sec"),
units = c("hours","days","weeks","mins", "secs"),
...) {
level <- match.arg(level)
level <- deprecated_level(level, ...)
Expand Down
2 changes: 1 addition & 1 deletion R/processing_time.R
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ processing_time <- function(eventlog, level, append, units, ...) {
processing_time.eventlog <- function(eventlog,
level = c("log","trace","case","activity","resource","resource-activity"),
append = F,
units = c("hours","days","weeks","mins"),
units = c("hours","days","weeks","mins", "secs"),
...){

level <- match.arg(level)
Expand Down
1 change: 1 addition & 0 deletions R/rework_base.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
rework_base <- function(eventlog) {

min_order <- NULL
event_classifier <- NULL
case_classifier <- NULL
timestamp_classifier <- NULL
Expand Down
2 changes: 1 addition & 1 deletion R/throughput_time.R
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ throughput_time <- function(eventlog, level, append, units, ...) {
throughput_time.eventlog <- function(eventlog,
level = c("log","trace","case"),
append = FALSE,
units = c("days", "hours","mins","weeks"),
units = c("hours","days","weeks","mins", "secs"),
...){

level <- match.arg(level)
Expand Down
2 changes: 1 addition & 1 deletion man/idle_time.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/processing_time.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion man/throughput_time.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a442ed1

Please sign in to comment.