parse_vector {readr} | R Documentation |
Parse a character vector.
parse_vector(x, collector, na = c("", "NA"), locale = default_locale(), trim_ws = TRUE)
x |
Character vector of elements to parse. |
collector |
Column specification. |
na |
Character vector of strings to interpret as missing values. Set this
option to |
locale |
The locale controls defaults that vary from place to place.
The default locale is US-centric (like R), but you can use
|
trim_ws |
Should leading and trailing whitespace be trimmed from each field before parsing it? |
Other parsers: col_skip
,
cols_condense
, cols
,
parse_datetime
, parse_factor
,
parse_guess
, parse_logical
,
parse_number
x <- c("1", "2", "3", "NA") parse_vector(x, col_integer()) parse_vector(x, col_double())