mrcaseb
mrcaseb
I have a somewhat special use case where I need to download R objects from GitHub. Currently the workflow is `readRDS(url("some_github_url"))` which is working because `readRDS` allows a connection for...
The default `gh` venue works mostly fine in discord except one minor detail: Code highlighting only works if there is no blank space between the first three backticks and the...
The `drive_*` variables are joined to the plays in this line https://github.com/nflverse/nflfastR/blob/92f4f92c64ebc3b80511b240077dfeedd091df06/R/helper_scrape_nfl.R#L182 It appears that the variable `plays$driveSequenceNumber` is `NA` for all 2013 postseason games (except `2013_19_NO_SEA`) which results in...
Should be possible to add a `downed_by_player_name` column as requested in [this thread](https://twitter.com/mike_lounsberry/status/1421509938287947781?s=21). However, we would be missing the player id in that case which wouldn't fit in our normal...
I am not sure if this is actually intended behavior. When I replace a variable using the `.code` class, this causes additional backticks around both the output of the variable...
Rebuilding the complete pbp database can fail sometimes and we would loose all completed seasons until that point. Maybe it's possible to write multiple actions or so to be able...
The current implementation of `gt_merge_stack()` fixes font colors which can be hard to read if color scales are used in cells. `gt::cols_merge()` with an appropriate merge pattern can solve this....
I am working on a gt extension that needs functionality analog to `autocolor_text = TRUE` in data_color. It would be very helpful if gt exports the `ideal_fgnd_color` function to avoid...
We see new issues in #444 and already had lots of problems caused by the fact that we summarize play stats into a tidy form. I think for player stats,...
This is more or less the same issue as in https://github.com/tidyverse/readr/issues/1050 vroom doesn't close connections that failed, e.g. a URL with a typo. ``` r # Correct URL to_load 0...