A wrapper for write.table that saves an object by name to a tab
delimited (.tsv) file with options to specify directory and include the
current date in the file name.
Usage
write_object(object, dir = NULL, date = TRUE)
Arguments
object
a data.frame, matrix, or vector to write out
dir
a character string specifying the directory (folder) in which save
the object, defaults to current working directory.
date
logical, if TRUE appends the object name with todays date
Value
Returns nothing. Saves "object_date.tsv" or "object.tsv" to current
directory.