Skip to contents

Convert CSV to Feather

Usage

csv2feather(
  input,
  output,
  delimiter = ",",
  compression = c("zstd", "lz4", "none"),
  compression_level = 3
)

Arguments

input

path to the input CSV file.

output

path to the output Feather file.

delimiter

field delimiter used in the CSV file.

compression

compression method (e.g., `"zstd"`, `"lz4"`, or `"none"`).

compression_level

compression level when using `"zstd"`.

Value

invisibly returns the command exit status.

Examples

if (FALSE) { # \dontrun{
csv2feather(
  input = "signal.csv",
  output = "signal.feather"
)
} # }