Define data import arguments
pmx_read_args(
x,
quiet,
col_types = readr::cols(.default = "d"),
na = "NA",
comment = "TABLE",
skip = 1,
...
)
A list of 2 levels fun (the import function) and params (a list of arguments to be used when calling fun).
A list containing a the 3 first records of a dataset under `[[1]]`.
Should messages be displayed to the console.
Defines the type of each column to be passed to the `readr` import function.
Character string defining the values to be treated as `NA`.
Character string defining the value to mark comments.
Number of rows to be skipped before reading the data.
Additional arguments to be passed to the `readr` function