Skip to content

Commit

Permalink
add dots to private function to content CRAN check
Browse files Browse the repository at this point in the history
  • Loading branch information
Enchufa2 committed Jul 17, 2023
1 parent 00df5e5 commit c4e6ed1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/plot.arrivals.R
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ plot.arrivals <- function(x, metric=c("activity_time", "waiting_time", "flow_tim
dispatch_next(metric, x)
}

plot.arrivals.activity_time <- function(x) {
plot.arrivals.activity_time <- function(x, ...) {
ggplot(x) +
aes(x = .data$end_time, y = .data$activity_time) +
geom_line(aes(group = .data$replication), alpha = set_alpha(x)) +
Expand All @@ -44,7 +44,7 @@ plot.arrivals.activity_time <- function(x) {
expand_limits(y = 0)
}

plot.arrivals.waiting_time <- function(x) {
plot.arrivals.waiting_time <- function(x, ...) {
ggplot(x) +
aes(x = .data$end_time, y = .data$waiting_time) +
geom_line(aes(group = .data$replication), alpha = set_alpha(x)) +
Expand All @@ -55,7 +55,7 @@ plot.arrivals.waiting_time <- function(x) {
expand_limits(y = 0)
}

plot.arrivals.flow_time <- function(x) {
plot.arrivals.flow_time <- function(x, ...) {
ggplot(x) +
aes(x = .data$end_time, y = .data$flow_time) +
geom_line(aes(group = .data$replication), alpha = set_alpha(x)) +
Expand Down

0 comments on commit c4e6ed1

Please sign in to comment.