Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Seal of Approval additions #6364

Merged
merged 5 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
^src/Makevars$
^CODEOWNERS$
^GOVERNANCE\.md$
^Seal_of_Approval\.md$

^\.RData$
^\.Rhistory$
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,18 @@ DT[Petal.Width > 1.0, mean(Petal.Length), by = Species]

`data.table` is widely used by the R community. It is being directly used by hundreds of CRAN and Bioconductor packages, and indirectly by thousands. It is one of the [top most starred](https://medium.datadriveninvestor.com/most-starred-and-forked-github-repos-for-r-in-data-science-fb87a54d2a6a) R packages on GitHub, and was highly rated by the [Depsy project](http://depsy.org/package/r/data.table). If you need help, the `data.table` community is active on [StackOverflow](https://stackoverflow.com/questions/tagged/data.table).

A list of packages that significantly support, extend, or make use of `data.table` can be found in the [Seal of Approval](Seal_of_Approval.md) document.

### Stay up-to-date

- click the **Watch** button at the top and right of GitHub project page
- read [NEWS file](https://github.com/Rdatatable/data.table/blob/master/NEWS.md)
- follow [#rdatatable](https://twitter.com/hashtag/rdatatable) on twitter
- follow [#rdatatable](https://fosstodon.org/tags/rdatatable) on fosstodon
- follow [#rdatatable](https://twitter.com/hashtag/rdatatable) and the [r_data_table](https://x.com/r_data_table) account on X/Twitter
- follow [#rdatatable](https://fosstodon.org/tags/rdatatable) and the [r_data_table account](https://fosstodon.org/@r_data_table) on fosstodon
- follow the [data.table community page](https://www.linkedin.com/company/data-table-community) on LinkedIn
- watch recent [Presentations](https://github.com/Rdatatable/data.table/wiki/Presentations)
- read recent [Articles](https://github.com/Rdatatable/data.table/wiki/Articles)
- read posts on [The Raft](https://rdatatable-community.github.io/The-Raft/)

### Contributing

Expand Down
21 changes: 21 additions & 0 deletions Seal_of_Approval.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Seal of Approval

This is a list of packages in the `data.table` community.

Further detail about these packages and their relationship to `data.table` can be found at [The Raft blog](https://rdatatable-community.github.io/The-Raft/#category=seal%20of%20approval).

To add your package to this list, please [submit a Pull Request to The Raft](https://github.com/rdatatable-community/The-Raft/), making sure to follow the templated instructions.

## Extension packages: Add to the internal functionality of `data.table`

- [nc](https://github.com/tdhock/nc): Named capture regular expressions for text parsing and data reshaping.
tdhock marked this conversation as resolved.
Show resolved Hide resolved

## Application packages: Use `data.table` to accomplish a particular task or analysis.

## Bridge package: Translate data.table syntax to different syntax or provides helper functions for transitioning between `data.table` and another object type.

- [tidyfast](https://github.com/TysonStanley/tidyfast): Fast and efficient alternatives to tidyr functions built on data.table
Anirban166 marked this conversation as resolved.
Show resolved Hide resolved

- [dtplyr](https://github.com/tidyverse/dtplyr): A `data.table` backend for `dplyr`

## Partner package: Not necessarily directly connected to `data.table`, but deliberately follows the [core philosophies of `data.table`](https://github.com/Rdatatable/data.table/blob/master/GOVERNANCE.md#the-r-package).
Loading