https://github.com/jonocarroll/cran_pkgs
https://github.com/jonocarroll/cran_pkgs
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jonocarroll/cran_pkgs
- Owner: jonocarroll
- Created: 2024-09-01T23:14:34.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-22T06:00:55.000Z (over 1 year ago)
- Last Synced: 2025-06-25T23:36:46.420Z (12 months ago)
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cran_pkgs
## CRAN Packages for which I am the maintainer
[GitHub Actions](https://github.com/jonocarroll/cran_pkgs/actions) is used to check the CRAN checks status for all of my packages
| CRAN Package | version / status | checks status | checks link | downloads |
| :----------: | :--------------: | :-----------: | :---------: | :-------: |
| [{ggeasy}](https://cran.r-project.org/package=ggeasy) |  |  | [{ggeasy}](https://cran.r-project.org/web/checks/check_results_ggeasy.html) |  |
| [{mathpix}](https://cran.r-project.org/package=mathpix) |  |  | [{mathpix}](https://cran.r-project.org/web/checks/check_results_mathpix.html) |  |
| [{ggghost}](https://cran.r-project.org/package=ggghost) |  |  | [{ggghost}](https://cran.r-project.org/web/checks/check_results_ggghost.html) |  |
| [{ntfy}](https://cran.r-project.org/package=ntfy) |  |  | [{ntfy}](https://cran.r-project.org/web/checks/check_results_ntfy.html) |  |
| [{charcuterie}](https://cran.r-project.org/package=charcuterie) |  |  | [{charcuterie}](https://cran.r-project.org/web/checks/check_results_charcuterie.html) |  |
Find all maintained packages
```
library(cranly)
cran_db <- clean_CRAN_db()
package_network <- build_network(cran_db)
package_network$nodes |>
dplyr::filter(grepl("rpkg@jcarroll.com.au", email)) |>
dplyr::select(package, version, doi)
```
## CRAN Packages for which I am a contributor, not the maintainer
I have contributed to these, but I am not the maintainer
| CRAN Package | version / status |
| :----------: | :--------------: |
| [{datapasta}](https://cran.r-project.org/package=datapasta) |  |
| [{weatherOz}](https://cran.r-project.org/package=weatherOz) |  |
| [{remedy}](https://cran.r-project.org/package=remedy) |  |
| [{csvy}](https://cran.r-project.org/package=csvy) |  |
| [{tidyRSS}](https://cran.r-project.org/package=tidyRSS) |  |
| [{wakefield}](https://cran.r-project.org/package=wakefield) |  |
| [{chessR}](https://cran.r-project.org/package=chessR) (archived) |  |
| [{bomrang}](https://cran.r-project.org/package=bomrang) (archived) |  |
Find all contributions
```
library(cranly)
cran_db <- clean_CRAN_db()
package_network <- build_network(cran_db)
# requires manual inspection for false positives
package_network$nodes |>
dplyr::filter(grepl("carroll", `authors@r`, ignore.case = TRUE)) |>
dplyr::select(package, `authors@r`)
```