cphaarmeyer

Results 5 comments of cphaarmeyer

Also can be done like this: ``` r library(jsonlite) library(sf) #> Linking to GEOS 3.9.1, GDAL 3.4.3, PROJ 7.2.1; sf_use_s2() is TRUE g {"type":"Point","coordinates":[1,2]} {"type":"Point","coordinates":[3,4]} s {"type":"Feature","properties":{"a":3},"geometry":{"type":"Point","coordinates":[1,2]}} {"type":"Feature","properties":{"a":4},"geometry":{"type":"Point","coordinates":[3,4]}} ``` Created...

Did you try to set the `time_scroll` parameter of `Search()`? See also https://docs.ropensci.org/elastic/articles/search.html#scrolling-search---instead-of-paging

Do you mean something like this? ``` docs

Oh sorry. Then I don't know. I have never seen such a setup.

Had the same problem. Seems to be related to timezones. What worked for me is ``` withr::with_timezone("GMT", dygraphs::dygraph(dat)) ```