R/toWeekly.R

Defines functions toWeekly

Documented in toWeekly

#' toWeekly
#'
#' @param x 
#'
#' @return
#' @export
#'
#' @examples
toWeekly = function(x){
  ret = Reduce(cbind,lapply(x,function(y){to.weekly(y)[,4]}))
  names(ret) = names(x)
  ret
}
itsaquestion/TPlot documentation built on May 20, 2021, 7:35 p.m.