cols(..., .default = col_guess())
cols_only(...)
col_*
, or their
abbreviated character names. If you're only overriding a few columns,
it's best to refer to columns by name. If not named, the column types
must match the column names exactly....
will be read with this column type.cols(a = col_integer())
cols_only(a = col_integer())
# You can also use the standard abreviations
cols(a = "i")
cols(a = "i", b = "d", c = "_")
Run the code above in your browser using DataLab