R/odd.R

Defines functions odd

Documented in odd

#' Title
#'
#' @param x
#'
#' @return
#' @export
#'
#' @examples
odd <- function(x){
  x[(1:length(x)) %% 2 != 0]
}
ylin00/yxhelper documentation built on April 20, 2020, 10:44 p.m.