Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyEbert committed Apr 6, 2017
1 parent 2e34ae9 commit ebda93f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ LazyData: true
Imports:
stats,
Rcpp,
tidyr,
tidyr,
dplyr
RoxygenNote: 5.0.1.9000
RoxygenNote: 5.0.1
Suggests:
knitr,
rmarkdown,
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export(QDC)
export(as.server.list)
export(as.server.stepfun)
export(average_queue)
export(create_batches)
export(lag_step)
export(ql_summary)
export(queue)
Expand Down
1 change: 1 addition & 0 deletions R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ as.server.list <- function(times, init){
#' @param arrival_dist a distribution whose support is strictly positive. Either as an object or a non-empty character string. It represents the distribution of arrival times.
#' @param service_rate a strictly positive number representing the rate parameter in the exponential distribution for the service times.
#' @param time a number greater than or equal to zero.
#' @export
create_batches <- function(data, arrival_dist, service_rate = NULL, time = 0){

output_df <- dplyr::data_frame(arrivals = time + do_func_ignore_things(data, arrival_dist))
Expand Down

0 comments on commit ebda93f

Please sign in to comment.