aria: Aria web application

Description Usage Arguments Value Examples

View source: R/aria.R

Description

This is the web application using the sistec package. It was created to ease the work using the package, but you can have the same results reading the files (read_rfept()), comparing the results with (compare_sistec()) and write the outputs (write_output()).

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
aria(
  max_file_size = 100,
  options_port = 8888,
  options_launch_browser = TRUE,
  version = "test",
  logs = TRUE
)

aria_server(version = "test", logs = TRUE)

aria_ui(version = "test")

Arguments

max_file_size

The maximum file size in megabytes.

options_port

The TCP port that the application should listen on, usually 8888.

options_launch_browser

If true, the system's default web browser will be launched automatically after the app is started.

version

Use "test" to run locally, "online" to run in the server or "desktop" to build the desktop version.

logs

Use FALSE if you don't want to retrieve the logs in your R session.

Value

A web application.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## Not run: 
library(sistec)

# use this to run aria in your R environment
aria()

# use this if you want to run the aria in a server
ui <- aria_ui(version = "online")
server <- aria_server(version = "online")
shiny::shinyApp(ui, server)

## End(Not run)

r-ifpe/sistec documentation built on May 21, 2021, 7:58 a.m.