sorry if i'm misreading something. thanks!
library(readr)
fwf_sample <- system.file("extdata/fwf-sample.txt", package = "readr")
cat(read_lines(fwf_sample))
# works
read_fwf(fwf_sample, fwf_widths(c(2, 5, 3)),col_types='ddd')
# includes a column of NAs because the column contains data even though it was told to skip?
read_fwf(fwf_sample, fwf_widths(c(2, 5, 3)),col_types='d-d')
sorry if i'm misreading something. thanks!