Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thisisnic/codewhere
https://github.com/thisisnic/codewhere
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/thisisnic/codewhere
- Owner: thisisnic
- License: other
- Created: 2024-05-31T08:14:32.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-05T13:43:36.000Z (8 months ago)
- Last Synced: 2024-12-03T18:52:07.099Z (about 2 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
[![R-CMD-check](https://github.com/thisisnic/codewhere/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/thisisnic/codewhere/actions/workflows/R-CMD-check.yaml)
[![CRAN status](https://www.r-pkg.org/badges/version/codewhere)](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"
```