R/odds.indo2hk.R

#' Convert Indonesian odds to Hong Kong odds
#'
#' @param x A vector of Indonesian odds
#'
#' @return A vector of Hong Kong odds
#'
#'@export
#'
#' @examples
#' odds.indo2hk(c(1.93,2.05))
odds.indo2hk <- function (x) {
  hk <- x
  hk[] <- NA_real_
  hk[which(x <= -1)] <- -1 / x[which(x <= -1)]
  hk[which(x >= 1)] <- x[which(x >= 1)]
  hk
}

Try the odds.converter package in your browser

Any scripts or data that you put into this service are public.

odds.converter documentation built on May 1, 2019, 8:02 p.m.