The hdnom appmaker is a template Shiny app for hdnom and hdnom.io users to make their own nomogram-based online prediction apps.
Start R, install the required packages:
install.packages("hdnom")
install.packages("shiny")
Run the template app:
shiny::runGitHub("road2stat/hdnom-appmaker")
If error happens when using shiny::runGitHub
, please try to clone the
Shiny app to local machine manually:
git clone https://github.com/road2stat/hdnom-appmaker.git
then start R, use
shiny::runApp("hdnom-appmaker")
to run the template app.
- Open
server.R
and follow the three steps to put your model and data in the right place. - Know how to deploy your application to shinyapps.io or your local Shiny server.
- Enjoy!