#' Given weight and height, returns BMI
#'
#' @param weight Weight, in kg.
#' @param height Height, in cm.
#'
#' @return Calculated BMI
#' @export
#'
#' @examples
#' calculate_BMI( 52, 155 )
calculate_BMI = function( weight, height ) {
return ( weight/((height/100)*(height/100)) )
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.