MortalityMinder is a web application built on the R Shiny application framework, written primarily in R, with some functionality written in javascript. It creates highly visual analysis of mortality data provided by CDCWonder and County Health Rankings. You will find live versions of the app at the following locations:
- http://mortalityminder.idea.rpi.edu/ (primary)
- https://olyerickson.shinyapps.io/mortalityminder/ (secondary)
To run a local instance of the application, follow the steps below:
- Clone the repository to your local setup; the directory
MortalityMinder
will be created. - Open RStudio and navigate to the
MortalityMinder
directory using the RStudio files tab. - Set the working directory to
MortalityMinder
- Double-click to open
app.R
and selectRun App
on the top-right corner of the code window.
If you use MortalityMinder in your work, please use the following reference
Bennett, Kristin P, and Erickson S John. “Mortality Minder.” Rensselaer Institute for
Data Exploration and Applications, 1 Nov. 2019, https://lp01.idea.rpi.edu/shiny/erickj4/MortalityMinder/.
The MortalityMinder app is in active development and undergoes daily updates. Please be sure to consistently pull from master in your local setup. If you notice any bugs, create an issue. Please ensure issues have a descriptive title, and the comment should describe where the bug was found and how you were using the application.
For all contributors, any changes made to the application should be written in a separate branch, and sent as a pull request. Please refrain from pushing changes directly to master, as we must ensure a working copy of the app at all times. When in doubt, follow this protocol:
- Clone the repo...
- cd into the resulting, new directory...
- git checkout -b new_branch and git push origin (to claim their branch)
- Code, code, code...
- git commit -a -m "My awesome changes"
- git commit -a -m "More awesome changes"
- While still in your branch, do a git pull (only if others are also working on the branch)
- Switch to master with git checkout master
- Sync your master using git pull <<< This is the important step!
- Now switch back to your branch with git checkout new_branch
- Now git commit -a -m "Final awesome changes" and git push origin
- Now you can do a PR, which should be safe from conflict.