# apache_score.R
#' Calculate APACHE-II score
#'
#' \code{apache_score} takes a data frame with patient data and calculates the
#' APACHE II score
#'
#' This function takes a data frame containing all of the data needed to
#' calculate the APAPCHE II score.
#'
#' @param x A data frame
#'
#' @return A data frame with all original columns plus APACHE II score
#'
#' @import dplyr
#'
#' @export
apache_score <- function(x) {
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.