All Projects â†’ mkearney â†’ Pkgverse

mkearney / Pkgverse

Licence: other
📦🔭🌠 Create your own universe of packages à la tidyverse

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Pkgverse

Tidymv
Tidy Model Visualisation for Generalised Additive Models
Stars: ✭ 25 (-76.85%)
Mutual labels:  tidyverse, r-package, rstats
Qcoder
Lightweight package to do qualitative coding
Stars: ✭ 82 (-24.07%)
Mutual labels:  r-package, rstats
Rorcid
A programmatic interface the Orcid.org API
Stars: ✭ 101 (-6.48%)
Mutual labels:  r-package, rstats
Git2rdata
An R package for storing and retrieving data.frames in git repositories.
Stars: ✭ 84 (-22.22%)
Mutual labels:  r-package, rstats
Feddata
Functions to Automate Downloading Geospatial Data Available from Several Federated Data Sources
Stars: ✭ 70 (-35.19%)
Mutual labels:  r-package, rstats
Gsodr
Global Surface Summary of the Day ('GSOD') Weather Data Client for R
Stars: ✭ 72 (-33.33%)
Mutual labels:  r-package, rstats
Rzmq
R package for ZMQ
Stars: ✭ 83 (-23.15%)
Mutual labels:  r-package, rstats
Lawn
â›” ARCHIVED â›” turf.js R client
Stars: ✭ 57 (-47.22%)
Mutual labels:  r-package, rstats
Drake
An R-focused pipeline toolkit for reproducibility and high-performance computing
Stars: ✭ 1,301 (+1104.63%)
Mutual labels:  r-package, rstats
Gistr
Interact with GitHub gists from R
Stars: ✭ 90 (-16.67%)
Mutual labels:  r-package, rstats
Refmanager
R package RefManageR
Stars: ✭ 90 (-16.67%)
Mutual labels:  r-package, rstats
Sysreqs
R package to install system requirements
Stars: ✭ 63 (-41.67%)
Mutual labels:  r-package, rstats
Lexisnexistools
📰 Working with newspaper data from 'LexisNexis'
Stars: ✭ 59 (-45.37%)
Mutual labels:  r-package, rstats
Pkgsearch
Search R packages on CRAN
Stars: ✭ 73 (-32.41%)
Mutual labels:  r-package, rstats
Mixomics
Development repository for the Bioconductor package 'mixOmics '
Stars: ✭ 58 (-46.3%)
Mutual labels:  r-package, rstats
Spelling
Tools for Spell Checking in R
Stars: ✭ 82 (-24.07%)
Mutual labels:  r-package, rstats
Elevatr
An R package for accessing elevation data
Stars: ✭ 95 (-12.04%)
Mutual labels:  r-package, rstats
Vcr
Record HTTP calls and replay them
Stars: ✭ 54 (-50%)
Mutual labels:  r-package, rstats
Nodbi
Document DBI connector for R
Stars: ✭ 56 (-48.15%)
Mutual labels:  r-package, rstats
Trackmd
Tools for tracking changes in Markdown format within RStudio
Stars: ✭ 89 (-17.59%)
Mutual labels:  r-package, rstats

pkgverse

lifecycle

Create your own universe of packages à la tidyverse.

Installation

You can install the dev version of pkgverse from Github with:

devtools::install_github("mkearney/pkgverse")

Example

Create @hrbrmstr’s tidyweb.

## vector of pkgs
tidyweb <- c("curl", "jsonlite", "httr", "xml2", "rvest", "purrr", "dplyr",
  "stringi", "gdns", "urltools", "iptools", "seleniumPipes", "webdriver",
  "HARtools", "xslt", "V8", "webreadr", "openssl", "splashr")

## create packages dir
dir.create("~/packages")

## create tidyweb pkgverse
pkgverse("tidyweb", tidyweb,
  keep = "~/packages",
  use = c("readme_rmd", "rstudio", "testthat", "mit_license", "git"),
  install_if = TRUE
)

Now load your pkg universe:

## load tidyweb
library(tidyweb)
── Attaching packages ───────────────────────────────────────────────────────────────────────── tidyweb 0.0.1 ──
✔ curl          3.2       ✔ iptools       0.4.0
✔ jsonlite      1.5       ✔ seleniumPipes 0.3.7
✔ httr          1.3.1     ✔ webdriver     1.0.5
✔ xml2          1.2.0     ✔ HARtools      0.0.5
✔ rvest         0.3.2     ✔ xslt          1.3  
✔ purrr         0.2.5     ✔ V8            1.5  
✔ dplyr         0.7.5     ✔ webreadr      0.4.0
✔ stringi       1.2.2     ✔ openssl       1.0.1
✔ gdns          0.2.1     ✔ splashr       0.4.1
✔ urltools      1.7.0     
── Conflicts ──────────────────────────────────────────────────────────────────────────── tidyweb_conflicts() ──
✖ seleniumPipes::back() masks rvest::back()
✖ dplyr::filter()       masks stats::filter()
✖ purrr::flatten()      masks jsonlite::flatten()
✖ httr::handle_reset()  masks curl::handle_reset()
✖ dplyr::lag()          masks stats::lag()
✖ purrr::pluck()        masks rvest::pluck()
✖ magrittr::set_names() masks purrr::set_names()
✖ urltools::url_parse() masks xml2::url_parse()
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].