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

https://github.com/jcrodriguez1989/packageexplorer

Package: Interactively explore R packages and functions dependencies
https://github.com/jcrodriguez1989/packageexplorer

devtools package-explorer r

Last synced: about 1 month ago
JSON representation

Package: Interactively explore R packages and functions dependencies

Awesome Lists containing this project

README

          

---
title: "Package Explorer"
output: github_document
---

Interactively explore functions dependencies.

## Installation
`packageexplorer` is currently only available as a GitHub package.
To install it run the following from an R console:
```{r eval = FALSE}
if (!require("remotes"))
install.packages("remotes")
remotes::install_github("jcrodriguez1989/packageexplorer")
```

## Usage

```{r, eval = FALSE}
library("packageexplorer")
explore(c("package:packageexplorer", "base::library"), include_deps = TRUE)
```

## Going to explore packages:
## packageexplorer
## Going to explore functions:
## base::library

```{r, echo = FALSE}
knitr::include_graphics("graph.png")
```