#' Calculate organic nitrogen concentration
#'
#' @param tn Total nitrogen concentration
#' @param no3 Nitrate concentration
#' @param nh3 Ammonia concentration
#' @export
organic_n <- function(tn, no3, nh3){
tn - (no3 + nh3)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.