https://github.com/thisisnic/codewhere
https://github.com/thisisnic/codewhere
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thisisnic/codewhere
- Owner: thisisnic
- License: other
- Created: 2024-05-31T08:14:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-05T13:43:36.000Z (about 1 year ago)
- Last Synced: 2025-01-30T21:20:26.922Z (5 months ago)
- Language: HTML
- Homepage: https://thisisnic.github.io/codewhere/
- Size: 288 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
README
# codewhere
[](https://github.com/thisisnic/codewhere/actions/workflows/R-CMD-check.yaml)
[](https://CRAN.R-project.org/package=codewhere)The goal of codewhere is to help you find the location of the code associated with an R package.
## Installation
You can install the development version of codewhere from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("thisisnic/codewhere")
```## Example
``` r
library(codewhere)
code_where("dplyr")
#> [1] "https://github.com/tidyverse/dplyr"
code_where("GenomeInfoDb", package_type = "bioc")
#> [1] "https://code.bioconductor.org/browse/GenomeInfoDb"
```