#' z-score of actual height
#'
#' Calculate z-score of actual height
#'
#' @param ht actual height
#' @param mu median height value
#' @param std Standerd deviation of height
#'
#' @concept z score
#'
z_ht <- function(ht, mu, std){
z <- (ht - mu)/std
return(z)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.