Kyle Husmann
Kyle Husmann
Hello, thanks for this awesome library! I'm working on a package for [working with "missing reason" data in R](https://kylehusmann.com/interlacer/). I'm experimenting with vctrs to see if I can build a...
Thanks again for this awesome library! I can tell y'all really value your docs, so I wanted to relay some minor (afaikt) inaccuracies I found in the documentation while learning...
`vec_rbind()` works fine, but `base::rbind()` fails because it relies on the ability to `[ ℹ Locations 3 and 4 don't exist. #> ℹ There are only 2 elements. #> Backtrace:...
I expected `col_select` in `read_package` to allow tidyselection like it's namesake arg in `read_delim` et al., but it looks like it only supports character vectors: ``` system.file("extdata", "datapackage.json", package="frictionless") %>%...
As I've briefly mentioned in other discussions (#158), I think the ability to load data packages as zipped blobs would potentially aid in the adoption of frictionless by many research...
A lot of frictionless implementations automatically load datapackage.json when reading a directory. It'd be nice to go ``` read_package("/path/to/packagedir") ``` instead of always ``` read_package("/path/to/packagedir/datapackage.json") ```
Presently, all missing values loaded by read_resource become NAs in the resulting tibble. This means that when missing values encode reasons for missingness (e.g. "Participant refused item", "Participant absent"), these...
A possible way to implement #157 . It sounds like you're plan is to let the idea simmer to see how other implementations approach it, but figured I'd submit what...
Hello! I'm trying to run an EFA with planned missingness. The challenge is that the missing pattern is such that there are no complete observations: ``` library(umx) example_data
Hey, thanks for the awesome lib! I'm recreating the [one2many kurento demo tutorial](https://github.com/Kurento/kurento-tutorial-node/tree/master/kurento-one2many-call), and running into a simple problem: When I receive a "present" message from a client, I immediately...