Update app.R
Browse files
app.R
CHANGED
|
@@ -1,6 +1,5 @@
|
|
| 1 |
#IF THIS APP IS TO BE USED IN SEASONS BEYOND 2026, CODE NEEDS TO BE CHANGED TO REFLECT THE CURRENT YEAR OF USE
|
| 2 |
|
| 3 |
-
library(shiny)
|
| 4 |
library(arrow)
|
| 5 |
library(httr)
|
| 6 |
library(jsonlite)
|
|
@@ -15,6 +14,7 @@ library(tidymodels)
|
|
| 15 |
library(base64enc)
|
| 16 |
library(tidyr)
|
| 17 |
library(dplyr)
|
|
|
|
| 18 |
|
| 19 |
`%||%` <- function(a, b) if (!is.null(a)) a else b
|
| 20 |
|
|
|
|
| 1 |
#IF THIS APP IS TO BE USED IN SEASONS BEYOND 2026, CODE NEEDS TO BE CHANGED TO REFLECT THE CURRENT YEAR OF USE
|
| 2 |
|
|
|
|
| 3 |
library(arrow)
|
| 4 |
library(httr)
|
| 5 |
library(jsonlite)
|
|
|
|
| 14 |
library(base64enc)
|
| 15 |
library(tidyr)
|
| 16 |
library(dplyr)
|
| 17 |
+
library(shiny)
|
| 18 |
|
| 19 |
`%||%` <- function(a, b) if (!is.null(a)) a else b
|
| 20 |
|