Robin Edwards
Robin Edwards
The data doesn't add up as far as I can see: ``` require(tidyverse) require(ggupset) d = tidy_movies |> filter(!duplicated(title)) |> select(title, Genres) |> mutate(Genres = map(Genres, tolower) |> map(unique), str...
Added 2 arguments to `upset`: `sets.comma` and `mainbar.comma` to force label formatting with commas.
Thanks for this super useful package. I want to restrict the crawl to certain URL specifications, but capture all links on the crawled pages regardless of whether they match the...
Hey there. I find [your example](https://cran.r-project.org/web/packages/text2vec/vignettes/glove.html) from Feb no longer works for me (macOS 11.0.1, version 4.0.3, text2vec 0.6). ``` require(text2vec) #> Loading required package: text2vec glove = GlobalVectors$new(rank =...
To make the output usable for people with accessibility needs we can currently hack the output to add `alt` param to `` tag as follows: ``` g = girafe(ggobj =...
Hi Thomas - not an issue but I wonder if you have any views on how routr and plumber sit with respect to each other (assuming you're familiar with the...
Hi guys. Awesome project! I read somewhere there was an open 10k res DEM. Do you happen to have this available too?
Fixed `get_r_reddit` after param and added before. `get_comment_reddit` still fails as `tbltools::as_tbl` deprecated?
Not sure if related to [issue 53](https://github.com/geoffjentry/twitteR/issues/53). Reading an [article today](https://www.theguardian.com/technology/shortcuts/2016/jun/12/echoes-beating-the-far-right-two-triple-brackets-at-a-time) on a reported far-right technique of using `(((handle)))` to denote certain users, I wondered about searching for `(((` or...
Is this officially supported or just an unintended bonus? ``` require(padr) #> Loading required package: padr require(tidyverse) #> Loading required package: tidyverse df = tibble(day = as.Date(c('2022-05-02', '2022-05-09', '2022-05-23', '2022-05-04',...