The shiny app published on shinyapps.io
(https://damilolah.shinyapps.io/course_project)
is a simple one paged web application that does two things:
Predicts that a certain patient has malaria
Shows a drop down list of some datasets in R
Ruth Akintunde
Data Scientist
(https://damilolah.shinyapps.io/course_project)
Predicts that a certain patient has malaria
Shows a drop down list of some datasets in R
Allows the user enter the amount of malaria parasite in the blood and then outputs the patient's probabilty of having malaria.
Here is the calculation, assuming the user enters 150,000 parasite in the blood per microlitre
malariaRisk <- function(parasite){
parasite/200000
}
malariaRisk(150000)
## [1] 0.75
The probability of having malaria is 0.75
The server.R and ui.R can be found here: https://github.com/damilolah/course_project_data_product/tree/master
Have fun and enjoy the app.
Thanks.