convert csv to arrow
csv2arrow(
csv_file,
arrow_file,
format = "parquet",
col_names,
value_column = "VALUE",
partitioning = c(),
na = c(NA, "..", "", "...", "F"),
repair_columns = c(),
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
columns whose values should be repaired of non-breaking spaces and control characters before writing, usually the dimension columns
encoding of csv file (default UTF-8)
(Optional) csv deliminator, default is ","