Shiny app for gathering simple information about the participants of a hackathon (initially the [Bayes Impact Hackathon] 1).
Go to http://hackprofiler.alizee.io
In R, you'll need to install the following dependencies:
install.packages(c("shiny", "RSQLite", "fmsb", "rjson", "jsonlite"))
Then launch the app from R with either:
library(shiny)
runGitHub("antoine-lizee/BIHack")
or cloning the repository (git clone ...
) and running the downloaded code in its folder:
library(shiny)
runApp()
If you want to investigate further, turn on the b_DEBUG
switch in the global.R
file.
Have a look at the ["More Information"] 2 pane of the app to have more context on the what, why and how of this piece of code.