Results 23 comments of Jeremy Stephens

The easiest way to accomplish what you want at this moment is to use a combination of a custom handler and setting the `as.named.list` parameter to `FALSE`: ```r str(yaml.load("{ test:...

Check out the documentation for `as.named.list`, since you might not need it. By default, `yaml.load` will coerce keys to strings, but there's no requirement that a map key has to...

I don't like the idea of only implementing it in `read_yaml`. That function only exists as a wrapper for those who wish to have a readr-like interface. I'm also not...

I'm not sure how to best go about supporting that. I'd probably need to add a parameter to `yaml.load` that turns on the functionality in order to keep backward compatibility....

This still occurs for me when the column type is not well defined. SQLite is very permissive about column types. Any invalid column type defaults to `NUMERIC` type (see [Determination...

@jeremyevans If it only looked at the first row, wouldn't the first record in the example be `{ bar: 123, baz: 456 }` instead of `{ bar: "123", baz: 456...

Any update with this? I've taken to writing a little helper in my tests so that I can use `

I noticed the sequence experiment branch. I came up with almost the same implementation independently for sequence blocks. Some other ideas: 1. use set_trace_func (or TracePoint) to add constraints to...

This is still an issue in Solaris 10. Installing manually with `R CMD INSTALL --configure-args=--disable-cxx11` works as noted, however.

Understandable. It's frustrating that R supports Solaris to be honest, at least to me.