-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.Rhistory
31 lines (31 loc) · 1.16 KB
/
.Rhistory
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
install.packages("renv")
renv::init()
renv::update()
renv::install("class")
renv::install(c("lattice", "MASS", "Matrix", "mgcv", "nlme"))
renv::status()
renv::snapshot()
renv::status()
# Run this script to start the FMT
source(file.path("./global.R"), local = TRUE)
source(file.path("./server.R"), local = TRUE)
source(file.path("./r/functions.R"), local = TRUE)
source(file.path("./r/spatial_container.R"), local = TRUE)
source(file.path("./r/meta_obj.R"), local = TRUE)
# Define the UI and server
ui <- source("ui.R", local = TRUE)$value
server <- source("server.R", local = TRUE)$value
# Run the app
shiny::shinyApp(ui = ui, server = server)
# Run this script to start the FMT
source(file.path("./global.R"), local = TRUE)
source(file.path("./server.R"), local = TRUE)
source(file.path("./r/functions.R"), local = TRUE)
source(file.path("./r/spatial_container.R"), local = TRUE)
source(file.path("./r/meta_obj.R"), local = TRUE)
# Define the UI and server
ui <- source(file.path("./ui.R", local = TRUE))$value
ui <- source(file.path("./ui.R"), local = TRUE)$value
server <- source(file.path("./server.R"), local = TRUE)$value
# Run the app
shiny::shinyApp(ui = ui, server = server)