convert csv to arrow
csv2arrow(
csv_file,
arrow_file,
format = "parquet",
col_names,
value_column = "VALUE",
partitioning = c(),
na = c(NA, "..", "", "...", "F"),
text_encoding = "UTF-8",
delim = ","
)
A database connection
input csv path
output arrow database path
format of arrow file, "parquet" or "feather" (default parquet)
column names of the csv file
name of the value column with numeric data
optional partition columns
na character strings
encoding of csv file (default UTF-8)
(Optional) csv deliminator, default is ","