Convert to R package

This commit is contained in:
Elias Projahn 2021-10-20 15:34:52 +02:00
parent b2e2dbf1af
commit d4611f47cf
15 changed files with 799 additions and 114 deletions

8
R/app.R Normal file
View file

@ -0,0 +1,8 @@
#' Run the application server.
#'
#' @param port The port to serve the application on.
#'
#' @export
run_app <- function(port = 3464) {
shiny::runApp(shiny::shinyApp(ui, server), port = port)
}