John Sheffield
John Sheffield
> Edit: Have you checked out ceramic? If I had a nickel for every time Michael Sumner had already written the thing I needed but didn't know the correct search...
I found this issue stub while researching `jsonify` to create ndjson for Google BigQuery inserts. If it's helpful to have another use-case from the wild in mind, here's the BigQuery...
Oh yeah, `bigrquery` is great for using BigQuery from an R client once there's a DB up and running. The issues I'm confronting now are mostly around ingestion pipelines. It...
I'm testing this out now, with `remotes::install_github("SymbolixAU/jsonify", ref = "issue29")`. So far everything's working great! Even on some large deeply nested dataframes, dfs with geojson embedded as strings, mixed types,...
Interesting question. The short answer is I think this should throw an error or at least a warning -- reasoning below. My use-cases are pretty narrow but I think the...
On a slightly separate note -- I'm seeing equivalent speeds regardless of nesting complexity, and that's a wild improvement on where I've been so far in homebrewing my own! ```r...
> I've decided I'm going to allow lists, non-recursively. Each of the top-level elements will be converted to a line of JSON Yep, I like this decision a lot. Forcing...
Just ran into this on `to_ndjson` in a production pipe: `Error in rcpp_to_ndjson(x, unbox, digits, numeric_dates, factors_as_string, : R character strings are limited to 2^31-1 bytes` This was an extremely...
@dcooley I just installed this per your comment in #29 but something is erroring out quickly. Pretty minimal reprex: ```r # remotes::install_github("SymbolixAU/jsonify", "issue58") jsonify::from_ndjson('{"abc":123}') ``` fails with error: `Error in...
Yikes, not my finest moment on Github. You're correct, closing paren in the wrong spot, so this statement now works with the fixed argname json to ndjson described above: `jsonify::from_ndjson(paste0(c('{"abc":123}',...