Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thisisnic/codewhere


https://github.com/thisisnic/codewhere

Last synced: 1 day ago
JSON representation

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"
```