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
- Host: GitHub
- URL: https://github.com/jcrodriguez1989/packageexplorer
- Owner: jcrodriguez1989
- Created: 2019-04-30T15:28:46.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-06T13:07:00.000Z (about 7 years ago)
- Last Synced: 2025-02-22T22:27:23.107Z (over 1 year ago)
- Topics: devtools, package-explorer, r
- Language: R
- Homepage:
- Size: 346 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
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")
```