R/write.csv3.R

Defines functions write.csv3

Documented in write.csv3

#' Customized write.csv function.
#' 
#' @param table data.frame, vector, matrix to write
#' @param file filename. Include .csv ending
#' @return outputs a table
#' @examples
#' \dontrun{
#' mymatrix<-matrix(ncol=2, c(1,2,3,4))
#' write.csv2(examplematrix,"myexample.csv")
#' }
#' 
#' @export
write.csv3<-function(table,file){
  write.csv(table,file,row.names=F,quote=F)
}
MoisesExpositoAlonso/moiR documentation built on Dec. 24, 2021, 10:12 p.m.