R/pickers.R

Defines functions pick_first

#' Pick observations occurring at the first-recorded time.
#' 
#' @param time time vector
#' @return index
#' @export
pick_first = function(time) which(time == min(time))
sakrejda/micropackage-template documentation built on May 17, 2019, 8:16 p.m.