Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mkearney/pkguse
Take Inventory of Package Use
https://github.com/mkearney/pkguse
Last synced: 27 days ago
JSON representation
Take Inventory of Package Use
- Host: GitHub
- URL: https://github.com/mkearney/pkguse
- Owner: mkearney
- License: other
- Created: 2019-07-22T19:13:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-19T01:40:00.000Z (about 5 years ago)
- Last Synced: 2024-08-13T07:15:32.511Z (4 months ago)
- Language: R
- Size: 48.8 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - mkearney/pkguse - Take Inventory of Package Use (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# pkguseThe goal of pkguse is to help users take inventory of their most used packages
## Installation
You can install the dev version of pkguse from [Github](https://github.com/mkearney/pkguse) with:
``` r
remotes::install_github("mkearney/pkguse")
```## Example
This is a basic use example:
```{r use}
## load {pkguse}
library(pkguse)## supply dir locations
p <- pkg_use(c("~/Documents", "~/Dropbox", "~/R"))## view freq table [tibble] output
print(p, n = 25)
```The output has methods for `plot`
```{r plot}
## plot pkguse (top 25)
plot(p, n = 25)
```and `summary`
```{r summary}
summary(p)
```