Kyle Husmann
Kyle Husmann
By setting `id` to the name of one of the existing columns, I can get a tibble with duplicate column names (no matter what `.name_repair` is set to) ``` r...
(Running vroom 1.6.5 & readr 2.1.5 on Ubuntu) When I call `problems()` after printing in this example, I get 2 problems flagged, instead of 1. The first doesn't look right...
(Running vroom 1.6.5 & readr 2.1.5 on Ubuntu) When readr is loaded in the environment, and `col_select` option is being used, the `problems()` attr gets no longer get attached to...
Right now, `NA` values are specified globally via `na` arg in the `read_*()` family of functions. Sometimes I want to supply `NA` values for specific *columns*, rather than the entire...
I have a r project with an Apache 2.0 license. 1) When using this helper, the license automatically pulled in becomes: "Apache License 2.0", which gets pulled into the license:...
Our current approach in Table Dialect is to mix-in new properties for new formats. This means properties like `delimter` can be set along with `sheetName`, which doesn't make sense. It's...
"Multiple select" items are an extremely common type of survey question type in the social / medical / bio-behavioral / etc sciences. For example: Which fruits do you like? (Select...
`vec_proxy_missing()` adds a new proxy that allows developers to extend the `is.na()`, `na.omit()` etc. behavior of their vctrs (as I describe in (#1925). It's useful/needed when vctrs contain special values...
I notice in #16 you switched from `col_integer()` to col_double() to avoid integer overflow. readr doesn't support big integers, but vroom does via `vroom::col_big_integer()`: https://vroom.r-lib.org/articles/vroom.html#column-types We may want to try...
Just put together a quick sketch of what interlacer support might look like for frictionless-r Key features that interlacer brings: - interlaced columns (so missing reasons are easily accessible) -...