diff --git a/scripts/app.R b/scripts/app.R new file mode 100644 index 0000000..3d278a5 --- /dev/null +++ b/scripts/app.R @@ -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) \ No newline at end of file