Kyle Husmann
Kyle Husmann
I looked into this a bit more, and it looks like the cryptic error messages thrown by `col_select` on invalid selections are a [vroom issue](https://github.com/tidyverse/vroom/issues/521). Once that is resolved, we...
Thanks for the feedback! 1. I think the simplest way of doing this is to simply add `.default=col_skip()` to the `col_types` list in `read_delim`. Because col_types is created via the...
Ah, makes sense! I was wondering about that yaml stuff -- I saw yaml export functions in frictionless-py but so far have not seen a datapackage.yaml in the wild, so...
Hi Peter, just wanted to share some of my progress in this area to get your feedback on the direction I'm going. I've made a [vignette](https://kylehusmann.com/scratch-ideas/value_labels.html) to explain... please let...
> The implementation is now very simple: if file ends with / assume a directory and add datapackage.json. Hmm, I see how this is simple from an implementation perspective, but...
@g0di I like your workaround! For me, vscode is reporting a conflict with the Faker class and Generator class though, on the `seed_instance` method - do you get that on...
A couple notes on this -- I now have a more mature readr wrapper hosted here: https://kylehusmann.com/interlacer/ My implementation uses `type_convert()`, which is beginning to stray from `vroom` in its...
Another way I just thought of we might handle the API on this that could be pretty slick could be just taking unnamed and named vectors for channel selection &...
Just implemented the new API idea above, so read_resource now only uses added `channels` arg. `channels = c("values")` -> load values (normal, default behavior) `channels = c("missing")` -> load missing...
Thanks for the feedback! 1. Sure! I think this approach is deserving of a full vignette. I'll put one together... :) 2. ^^ 3. For this feature, I'm thinking more...