R/myround.R

Defines functions myround

Documented in myround

#' Alternative rounding function
#'
#' @param x numeric vector to be rounded
#' @examples
#' ## Short example
#'
#' # Load precomputed example data
#' #TODO: find test object
#'
#' @export

myround <- function(x){trunc(x+0.5)}
CMET-UGent/CMETNGS documentation built on Dec. 12, 2020, 8:22 a.m.