gregleleu

Results 41 comments of gregleleu

I am experiencing the exact same issue. Full repo below. I believe it has something to do with the parent div being destroyed, not modals specifically: * I tried a...

After more digging: The "shiny-bound-output" class present when the htmlwidget factory is called the first time around, but the second it only gets added _after_ so the shiny-specific rendering (events,...

Hi, Depending on your cases, not duplicating lines means `var` in `df2` has no duplicates, so you could do: ``` df3 % left_join(df2 %>% assert(is_uniq, var), by="var") ``` Which will...

To @DavisVaughan 's point, it has more uses cases than just dplyr flows. The below fails as well, and I'm not sure why. ``` library(progressr) library(purrr) xs

Reading @HenrikBengtsson's answer, the below works, but it's probably against good coding principles? I'm specifying where to look for `p` ``` library(progressr) library(purrr) xs

Hi, I'm also trying to use geom_sf with ggmap and can't get the raster and layer to superpose correctly. I thought it was a CRS issue but they seem coherent...

I submitted a pull request (also including base maps from carto) but it adds an sf dependency which fails at build time because some libraries are not on the CI/CD...

@talhazarfarjutt, the underlying image of the map is in 3857, so we need to set the CRS of the overall ggplot to 3857 as it is in the code. Whatever...

@SimonDedman st_contour segfaults on my computer (even after reinstalling and rebooting everything) so I can't run the reprex, but if that helps the steps I would try are: 1. Get...

If it's any help, morphed graph are lists (in most cases at least), so I tried running the nested morph on the list elements. However this fails when unmorphing because...