forked from ugurdar/shiny-tiny-hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.Rmd
More file actions
44 lines (35 loc) · 798 Bytes
/
Copy pathapp.Rmd
File metadata and controls
44 lines (35 loc) · 798 Bytes
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
32
33
34
35
36
37
38
39
40
41
42
43
44
---
title: "FDA Adverse Event Reporting System (FAERS) Public Dashboard"
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: fill
logo: logo.jpg
theme: cosmo
base_font: "Source Sans Pro"
runtime: shiny
---
```{r setup, include=FALSE}
library(flexdashboard)
library(shiny)
library(dplyr)
library(plotly)
library(thematic)
library(shinyBS)
library(reactable)
#thematic::thematic_shiny()
# Simulate dataset
faers_simulated <- read.csv("faers_simulated.csv")
```
Sidebar {.sidebar}
=====================================
```{r child = '01_sidebar.Rmd'}
```
Main page
=====================================
```{r child = '02_mainpage.Rmd'}
```
Search by drugs {.tabset}
=====================================
```{r child = '03_searchbydrug.Rmd'}
```