Aliases: write_delim write_csv write_csv2 write_excel_csv write_excel_csv2 write_tsv
Keywords:
### ** Examples ## Don't show: .old_wd <- setwd(tempdir()) ## End(Don't show) # If only a file name is specified, write_()* will write # the file to the current working directory. write_csv(mtcars, "mtcars.csv") write_tsv(mtcars, "mtcars.tsv") # If you add an extension to the file name, write_()* will # automatically compress the output. write_tsv(mtcars, "mtcars.tsv.gz") write_tsv(mtcars, "mtcars.tsv.bz2") write_tsv(mtcars, "mtcars.tsv.xz") ## Don't show: setwd(.old_wd) ## End(Don't show)