csv2csv: Convert a German Comma Separated File into a Comma Separated...

View source: R/csv.R

csv2csvR Documentation

Convert a German Comma Separated File into a Comma Separated File

Description

Convert a German Comma Separated File into a Comma Separated File

Usage

csv2csv(file, ...)

Arguments

file

Path to the file.

...

Arguments passed to read_csv

Value

Invisibly the return value of write_csv, but called for its side effect.

See Also

Other CSV functions: bulk_read_csv(), bulk_write_csv(), check_ascii_file(), csv

Examples

f <- tempfile()
write.csv2(mtcars, file = f)
res <- csv2csv(f)
readLines(get_path(res), n = 1)
write.csv(mtcars, file = f)
readLines(get_path(res), n = 1)

fritools documentation built on Nov. 19, 2023, 1:06 a.m.