R/odd.R

Defines functions odd

Documented in odd

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