tidyverse / vroom

Fast reading of delimited files
https://vroom.r-lib.org
Other
622 stars 60 forks source link

Error in UseMethod("collector_value"): no applicable method for 'collector_value' applied to an object of class "c('collector_skip', 'collector')" #540

Open ramiromagno opened 2 months ago

ramiromagno commented 2 months ago
vroom::vroom(I("a\tb\n"), delim = "\t", col_types = "cc", skip = 1L)
#> # A tibble: 0 × 2
#> # ℹ 2 variables: X1 <chr>, X2 <chr>
vroom::vroom(I("a\tb\n"), delim = "\t", col_types = "c-", skip = 1L)
#> Error in UseMethod("collector_value"): no applicable method for 'collector_value' applied to an object of class "c('collector_skip', 'collector')"
vroom::vroom(I("a\tb\n"), delim = "\t", col_types = "--", skip = 1L)
#> Error in UseMethod("collector_value"): no applicable method for 'collector_value' applied to an object of class "c('collector_skip', 'collector')"

Created on 2024-07-06 with reprex v2.1.0