Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #40 from xiaoyuanf/master
Browse files Browse the repository at this point in the history
finished task 3, skeleton of dashboard
  • Loading branch information
qiyangqd authored Mar 24, 2020
2 parents ddb92b2 + 7f37e6d commit 6416b82
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions scripts/app.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# author: Margot Chen, Qi Yang
# date: 2020-03-23

"This script is the main file that creates a Dash app.
Usage: app.R
"

# Libraries

library(dash)
library(dashCoreComponents)
library(dashHtmlComponents)
library(ggplot2)
library(plotly)
library(tidyverse)

app <- Dash$new()

# Load the data here
# TO DO




# layout

app$layout(
htmlDiv(
htmlH1(
"Beijing PM2.5 Data"
)
)
)


app$run_server(debug=TRUE)

0 comments on commit 6416b82

Please sign in to comment.