Davis Vaughan
Davis Vaughan
Does that look something like Previously: ```r who %>% pivot_longer( cols = new_sp_m014:newrel_f65, names_to = c("diagnosis", "gender", "age"), names_pattern = "new_?(.*)_(.)(.*)", values_to = "count" ) ``` New: (where it makes...
I think the toughest part is deciding when we are doing old `separate/extract()` like behavior vs using the new `separate_wider_*()` style behavior. Possibly if we have a _named_ character vector...
Other tough part is that we probably want to use the algorithm of `str_separate_wider_regex()` and friends, but we don't want their error messages because they refer to `too_few = `...
Could also introduce 3 new arguments, `names_delim`, `names_patterns`, and `names_positions` that align with `separate_wider_*()` and soft deprecate `names_sep` and `names_pattern`
Not quite yet, I may end up just doing this myself in the next clock release, but I also have a plan to clean up some of the clock internals...
Here's an updated link, not sure about all the particular details you mentioned yet https://github.com/HowardHinnant/date/blob/master/include/date/julian.h
Not calling `.onUnload()` was intentional according to https://github.com/r-lib/pkgload/issues/148#issuecomment-790910702
Might make sense to export it along with `topic_write_text()` jointly as `topic_write(type = c("text", "html"))` (but we'd have to keep the underlying `topic_write_html()` in place for a long time for...
Then revisit https://github.com/tidyverse/tidyr/issues/1397#issuecomment-1370193676 since `reframe()` will be available
`the` is often used in combination with `on_load()` like in https://github.com/tidyverse/dplyr/blob/c963d4db08ab4b4e7f75e3b99b04ef5f6e903a25/R/slice.R#L583-L586 As @lionel- said, it is useful to have the `on_load()` call in the context of where it is actually...