Skip to content

Instantly share code, notes, and snippets.

## Preliminaries ----
## Load Packages
library(tidyverse)
library(lubridate)
library(here)
library(readxl)
## Specify the folder ----
FolderMaster <- here::here("Official Results")
@jtag04
jtag04 / new_reactive filters flexdashboard
Created March 29, 2019 06:04
mutually dynamic filters for R Shiny Flexdashboard
---
title: "reactive test"
output:
flexdashboard::flex_dashboard
runtime: shiny
---
```{r}
library(tidyverse)
```
@jtag04
jtag04 / reactive shiny input options.rmd
Created March 27, 2019 05:22
I am trying to make mutually reactive shiny input (in a flexdashboard)
---
title: "reactive test"
output:
flexdashboard::flex_dashboard
runtime: shiny
---
```{r}
library(tidyverse)
```
@jtag04
jtag04 / reactive plotly.rmd
Last active March 27, 2019 05:18
Remaking Carson Sievert's updating a reactive plotly chart example
---
title: "dash"
output: flexdashboard::flex_dashboard
runtime: shiny
---
```{r setup, include=FALSE}
library(tidyverse)