When I write code in R, the correct way to document is in the code itself, in the form of comments started with a special mark #' .
#' Add together two numbers.
#'
#' @param x A number.
#' @param y A number.
#' @return The sum of \code{...
asked on
19.12.2016 / 13:10