Aliases: vroom_write
Keywords:
### ** Examples # If you only specify a file name, vroom_write() will write # the file to your current working directory. out_file <- tempfile(fileext = "csv") vroom_write(mtcars, out_file, ",") # You can also use a literal filename # vroom_write(mtcars, "mtcars.tsv") # If you add an extension to the file name, write_()* will # automatically compress the output. # vroom_write(mtcars, "mtcars.tsv.gz") # vroom_write(mtcars, "mtcars.tsv.bz2") # vroom_write(mtcars, "mtcars.tsv.xz")