Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
MichaelChirico pushed 1 commit to master Rdatatable/data.table
- add 1.16.4 NOTES to master (#6709) * add 1.16.4 NOTES to master * Also remove from dev NEWS --------- Co-au... e14a633
MichaelChirico closed an issue on Rdatatable/data.table
Missing 1.16.4 from master (just NEWS?)
I think all of the relevant commits shipped with 1.16.4 are already dual-committed to `master`, but the NEWS items are still not merged to match CRAN.MichaelChirico closed a pull request on Rdatatable/data.table
add 1.16.4 NOTES to master
Closes #6706MichaelChirico pushed 1 commit to notes-1.16.4 Rdatatable/data.table
- Also remove from dev NEWS 9c749d1
MichaelChirico pushed 1 commit to alpine-devcontainer Rdatatable/data.table
- need devcontainer.json 7b9329d
MichaelChirico pushed 1 commit to alpine-devcontainer Rdatatable/data.table
- Initial attempt at alpine image 56a9222
MichaelChirico created a branch on Rdatatable/data.table
alpine-devcontainer - R's data.table package extends data.frame:
MichaelChirico created a comment on an issue on Rdatatable/data.table
yes, still needed! I would go through the vignettes and find all cross-references vignettes (when one vignette links to another), and make sure that the website rendered version has a clickable ...
MichaelChirico opened a pull request on Rdatatable/data.table
Fix incorrect keying of by= results involving functions of keys
Closes #5583. In principal this could be a breaking change for some user that has `by = .(a = foo(a))` where `a` is the key and `foo()` is weakly increasing. If we find any such case in revde...MichaelChirico created a branch on Rdatatable/data.table
by-rev-key - R's data.table package extends data.frame:
MichaelChirico created a comment on an issue on Rdatatable/data.table
Some related faulty logic determining the key of the result: ```r DT=data.table(a=1:3, b=3:1, key='a,b') key(DT[,.N, by=.(a^b, rep(1L, 3L))]) # [1] "a" "rep" ```
MichaelChirico created a comment on an issue on Rdatatable/data.table
OK I _think_ the key is the function has to return a strictly decreasing ordering of the key column -- not just any function in `by=` triggers the bug: ```r DT=data.table(a=-1:2, key='a') key(...
MichaelChirico created a comment on an issue on Rdatatable/data.table
Thanks for the report @grantmcdermott I've filed it as a separate issue instead: #6707
MichaelChirico opened an issue on Rdatatable/data.table
data.table + sf integration with ggplot2 regression
A related issue AFAICT is the `data.table` + `sf` integration with `ggplot2`. I've just discovered this as I was trying to replicate an old [blog post](https://grantmcdermott.com/fast...MichaelChirico opened an issue on Rdatatable/data.table
Missing 1.16.4 from master (just NEWS?)
I think all of the relevant commits shipped with 1.16.4 are already dual-committed to `master`, but the NEWS items are still not merged to match CRAN.MichaelChirico created a comment on an issue on Rdatatable/data.table
Could you provide some motivating benchmarks showing how inefficient it is to call `min()`/`max()` separately vs. calculate both in a single loop?
MichaelChirico created a comment on a pull request on github/docs
Take your time / no rush at all. Please prioritize other work first as appropriate.
MichaelChirico created a comment on an issue on Rdatatable/data.table
There is existing #6664 awaiting review, feel free to comment.
MichaelChirico created a comment on a pull request on github/docs
I have no context to offer improvements for the CI errors -- I leave it to the reviewer's judgment whether those should be addressed here or in a separate PR.
MichaelChirico created a review comment on a pull request on github/docs
Looks great, thanks for the refinement!
MichaelChirico created a review comment on a pull request on github/docs
💯 agree. I only chose the note as it was the first mention, didn't feel confident to go so far as to move things around in the article. And no problem at all w the more extensive edits. I raised...
MichaelChirico pushed 1 commit to setdt-s4 Rdatatable/data.table
- NEWS for separately-fixed bug eeeb61c