Shiny frameworks
This section covers four popular Shiny frameworks:
The applications in Chapter 22 (golem
) can be accessed with the launch()
or get()
functions from the shinypak
R package:
# install.packages('pak')
pak::pak('mjfrigaard/shinypak')
library(shinypak)
Chapter 22 applications:
list_apps(regex = '^22')
## # A tibble: 1 × 2
## branch last_updated
## <chr> <dttm>
## 1 22_pkgdown 2024-08-23 07:16:31
The applications in Chapter 23 (leprechaun
) can be accessed with the launch()
or get()
functions from the shinypak
R package:
# install.packages('pak')
pak::pak('mjfrigaard/shinypak')
library(shinypak)
Chapter 23 applications:
list_apps(regex = '^23')
## # A tibble: 1 × 2
## branch last_updated
## <chr> <dttm>
## 1 23_golem 2024-08-23 07:47:08
The applications in Chapter 24 (rhino
) can be accessed with the launch()
or get()
functions from the shinypak
R package:
# install.packages('pak')
pak::pak('mjfrigaard/shinypak')
library(shinypak)
Chapter 24 applications:
list_apps(regex = '^24')
## # A tibble: 1 × 2
## branch last_updated
## <chr> <dttm>
## 1 24_leprechaun 2024-09-03 14:24:11
For a complete description of how each application was created, see the Shiny frameworks supplemental website.