Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
MichaelChirico created a branch on MichaelChirico/funchir
age-Date - R package of convenient functions
MichaelChirico created a branch on MichaelChirico/funchir
get_age_dates - R package of convenient functions
MichaelChirico pushed 1 commit to master MichaelChirico/funchir
- Use fcase() in get_age() (#22) * Attempt to use fcase() * skip linting * found typo * 2nd typo * add a f... 2916f07
MichaelChirico closed an issue on MichaelChirico/funchir
Feature/Compatibility Request: Arrow and/or DuckDB support for `get_age`
Hi Michael. Thanks for sharing your utility functions, `get_age` in particular has come in extremely handy for some of the data I've been working with where age needs to be more precise than the...MichaelChirico closed a pull request on MichaelChirico/funchir
Use fcase() in get_age()
Mostly fixes #18; what remains is to make acero interpret `fcase()` basically like `case_when()`. I also think the new version of the code is a bit more readable. And it turns out to be almost 2...MichaelChirico created a comment on an issue on MichaelChirico/funchir
Filed https://github.com/apache/arrow/issues/45098 on the {arrow} side to close the loop.
MichaelChirico opened an issue on apache/arrow
Support translations of simple data.table functions
### Describe the bug, including details regarding any error messages, version, and platform. Related: #39822. Context: https://github.com/MichaelChirico/funchir/issues/18 Goal: `acero` engine ...MichaelChirico created a comment on an issue on MichaelChirico/funchir
Thanks a ton for the FR @TPDeramus. It forced me to revisit the implementation of `get_age()` -- it's now (1) much simpler to read (2) a fair amount faster and (3) more correct! IINM the impleme...
MichaelChirico created a comment on a pull request on MichaelChirico/funchir
Benchmarking the `fcase()` approach: ```r library(microbenchmark) microbenchmark(times = 10L, inputs[, get_age(birthday, ref_dates)], inputs[, get_age_old(birthday, ref_dates)]) ``` (`in...
MichaelChirico pushed 2 commits to age-fcase MichaelChirico/funchir
MichaelChirico pushed 1 commit to master Rdatatable/data.table
- Various tweaks to joins vignette (#6688) * various tweaks to joins rmd file * few more tweaks * one more * ... 3b2812b
MichaelChirico closed a pull request on Rdatatable/data.table
Various tweaks to joins vignette
Few tweaks to the new joins vignette. - more consistent usage of full-stops. - few typos. - few grammatical improvements. FYI @AngelFelizR (BTW - love the new vignette 🙏)MichaelChirico pushed 1 commit to joins-markdown-tweaks KyleHaynes/data.table
- minor refinements e9149ec
MichaelChirico created a review on a pull request on Rdatatable/data.table
Thanks for taking the time to file!
MichaelChirico created a review comment on a pull request on Rdatatable/data.table
```suggestion - The `id` column in the first table has the same information as the `product_id` in the second table. - The `i.id` column in the first table has the same information as the `id...
MichaelChirico created a review comment on a pull request on Rdatatable/data.table
```suggestion Despite both tables having the same information, there are some relevant differences: ``` "they present" is redundant with the first bullet point
MichaelChirico created a review comment on a pull request on Rdatatable/data.table
```suggestion ##### Summarizing with `on` in `data.table` ```
MichaelChirico pushed 1 commit to age-fcase MichaelChirico/funchir
- trailing ',', add a comment 68cfe93
MichaelChirico pushed 1 commit to age-fcase MichaelChirico/funchir
- Use a different offset for readability, clarity 887a471
MichaelChirico pushed 1 commit to age-fcase MichaelChirico/funchir
- Adapt to error also fixed in #31 eeee004