R/filesys-fcns.R

Defines functions write.running.table

Documented in write.running.table

#' write.running.table
#'
#' Writes measures to a running table as they are generated
#'
#' @export
write.running.table <- function(x, save.path) {

  write.table(x,
              save.path,
              sep = ",",
              col.names =
                !file.exists(save.path),
              append = T,
              row.names = F)

}
kmcd39/taux documentation built on Jan. 29, 2024, 11:45 p.m.