Skip to content

Commit

Permalink
Added link to arXiv preprint.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyEbert committed Nov 17, 2017
1 parent e3b9eeb commit efe6cb0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ The focus on this package is:

It is up to the user to provide arrival and service times, and therefore very complicated distributions can be simulated (by the user) and tested with this package.

For detailed information regarding the algorithm used in this package see our arXiv preprint:

Ebert, A., Wu, P., Mengersen, K., & Ruggeri, F. (2017). [Computationally Efficient Simulation of Queues: The R Package queuecomputer](https://arxiv.org/abs/1703.02151). arXiv preprint arXiv:1703.02151.

## Installation

```{r, eval = FALSE}
Expand Down Expand Up @@ -88,10 +92,6 @@ summary(queue_1)
summary(queue_2)
```

## More information

For more information on how to use the package see the package vignettes or the R help files.

## Acknowledgements

I'd like to thank my supervisors [Professor Kerrie Mengersen](https://bragqut.wordpress.com/mengersen/), [Dr Paul Wu](https://bragqut.wordpress.com/people/research-staff/wu/) and [Professor Fabrizio Ruggeri](http://www.mi.imati.cnr.it/fabrizio/).
Expand Down
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ The focus on this package is:

It is up to the user to provide arrival and service times, and therefore very complicated distributions can be simulated (by the user) and tested with this package.

For detailed information regarding the algorithm used in this package see our arXiv preprint:

Ebert, A., Wu, P., Mengersen, K., & Ruggeri, F. (2017). [Computationally Efficient Simulation of Queues: The R Package queuecomputer](https://arxiv.org/abs/1703.02151). arXiv preprint arXiv:1703.02151.

Installation
------------

Expand Down Expand Up @@ -77,7 +81,7 @@ head(arrivals_1)
head(queue_1$departures_df)
#> # A tibble: 6 x 6
#> arrivals service departures waiting system_time server
#> <dbl> <dbl> <dbl> <dbl> <dbl> <int>
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 100.7552 0.1890576 100.9442 -6.383782e-15 0.1890576 1
#> 2 101.9368 2.5656478 104.5025 4.440892e-15 2.5656478 2
#> 3 102.0825 1.6870828 103.7696 0.000000e+00 1.6870828 1
Expand All @@ -89,7 +93,7 @@ head(arrivals_2)
head(queue_2$departures_df)
#> # A tibble: 6 x 6
#> arrivals service departures waiting system_time server
#> <dbl> <dbl> <dbl> <dbl> <dbl> <int>
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 120.3923 5.1599751 125.5523 -2.664535e-15 5.159975 1
#> 2 105.6711 1.5841166 107.2552 0.000000e+00 1.584117 1
#> 3 227.5242 0.1136285 290.7928 6.315502e+01 63.268650 1
Expand All @@ -107,7 +111,7 @@ summary(queue_1)
#> Mean response time:
#> 13.7
#> Utilization factor:
#> 0.38410206651912
#> 0.384
#> Mean queue length:
#> 3.7
#> Mean number of customers in system:
Expand All @@ -123,18 +127,13 @@ summary(queue_2)
#> Mean response time:
#> 37.2
#> Utilization factor:
#> 0.519160307775743
#> 0.519
#> Mean queue length:
#> 5.71
#> Mean number of customers in system:
#> 6.21
```

More information
----------------

For more information on how to use the package see the package vignettes or the R help files.

Acknowledgements
----------------

Expand Down

0 comments on commit efe6cb0

Please sign in to comment.