All Projects → trinker → Pacman

trinker / Pacman

A package management tools for R

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Pacman

Minicran
R package to create internally consistent, mini version of CRAN
Stars: ✭ 123 (-44.09%)
Mutual labels:  r-package, cran, package-management
Rinside
Seamless embedding of R in C++ programs
Stars: ✭ 112 (-49.09%)
Mutual labels:  r-package, cran
Packages
The default package source of the Zeek Package Manager
Stars: ✭ 94 (-57.27%)
Mutual labels:  packages, package-management
Drat
Drat R Archive Template
Stars: ✭ 127 (-42.27%)
Mutual labels:  r-package, cran
Pkgsearch
Search R packages on CRAN
Stars: ✭ 73 (-66.82%)
Mutual labels:  r-package, cran
Markovchain
Easy Handling Discrete Time Markov Chains
Stars: ✭ 80 (-63.64%)
Mutual labels:  r-package, cran
Mlr
Machine Learning in R
Stars: ✭ 1,542 (+600.91%)
Mutual labels:  r-package, cran
Dataexplorer
Automate Data Exploration and Treatment
Stars: ✭ 362 (+64.55%)
Mutual labels:  r-package, cran
Rblpapi
R package interfacing the Bloomberg API from https://www.bloomberglabs.com/api/
Stars: ✭ 133 (-39.55%)
Mutual labels:  r-package, cran
Pinp
Pinp Is Not PNAS -- Two-Column PDF Template
Stars: ✭ 134 (-39.09%)
Mutual labels:  r-package, cran
Osrm
Shortest Paths and Travel Time from OpenStreetMap with R
Stars: ✭ 160 (-27.27%)
Mutual labels:  r-package, cran
Nanotime
Nanosecond Resolution Time Functionality for R
Stars: ✭ 39 (-82.27%)
Mutual labels:  r-package, cran
Configr
Implements the JSON, INI, YAML and TOML parser, for R setting and writing of configuration file.
Stars: ✭ 38 (-82.73%)
Mutual labels:  r-package, cran
Wooldridge
The official R data package for "Introductory Econometrics: A Modern Approach". A vignette contains example models from each chapter.
Stars: ✭ 90 (-59.09%)
Mutual labels:  r-package, cran
Rcpp
Seamless R and C++ Integration
Stars: ✭ 572 (+160%)
Mutual labels:  r-package, cran
Simmer
Discrete-Event Simulation for R
Stars: ✭ 170 (-22.73%)
Mutual labels:  r-package, cran
rcppgsl
Rcpp integration for GNU GSL vectors and matrices
Stars: ✭ 28 (-87.27%)
Mutual labels:  cran, r-package
digest
R package to create compact hash digests of R objects
Stars: ✭ 94 (-57.27%)
Mutual labels:  cran, r-package
Core Plans
Core Habitat Plan definitions
Stars: ✭ 129 (-41.36%)
Mutual labels:  packages, package-management
Webservices
CRAN WebTechnologies Task View
Stars: ✭ 160 (-27.27%)
Mutual labels:  r-package, cran

pacman

Build Status DOI

The pacman package is an R package management tool that combines the functionality of base library related functions into intuitively named functions. This package is ideally added to .Rprofile to increase workflow by reducing time recalling obscurely named functions, reducing code and integrating functionality of base functions to simultaneously perform multiple actions.

Function names in the pacman package follow the format of p_xxx where 'xxx' is the task the function performs. For instance the p_load function allows the user to load one or more packages as a more generic substitute for the library or require functions and if the package isn't available locally it will install it for you.

Installation

The user can install from CRAN via:

install.packages("pacman")

You can also download the dev version via zip ball or tar ball, decompress and run R CMD INSTALL on it, or use the devtools package to install the development version:

## Make sure your current packages are up to date
update.packages()
## devtools is required
library(devtools)
install_github("trinker/pacman")

Note: Windows users need Rtools and devtools to install this way.

Help

Contact

You are welcome to:

Installing, Loading, Unloading, Updating, & Deleting Packages with pacman

Quick Reference Table

pacman Function Base Equivalent Description
p_load install.packages + library Load and Install Packages
p_install install.packages Install Packages from CRAN
p_load_gh NONE Load and Install GitHub Packages
p_install_gh NONE Install Packages from GitHub
p_install_version install.packages &
packageVersion
Install Minimum Version of Packages
p_temp NONE Install a Package Temporarily
p_unload detach Unload Packages from the Search Path
p_update update.packages Update Out-of-Date Packages
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].