Jack
March 2017
This document describes the BMI application which calculates the Body Mass Index - BMI based on the following.
The input variables for the calculation are:
The BMI is calculated based on the formula Height divided by Weight squared, or:
Based on the input, the following results are determined:
The category for the BMI is determined as one of the following:
Here is an example of how the BMI is calculated:
weight <- 78
height <- 1.78
bmi <- (weight / (height ^ 2))
bmi
[1] 24.6181
This BMI Rpres presentation is published here on RPubs:
The BMI application is published here on ShinyApps.io:
The BMI source code can be found here on Github:
server.Rui.Rbmi.Rpres