usethis (version 1.2.0)

use_package: Use specified package.

Description

use_package() adds a CRAN package dependency to DESCRIPTION and offers a little advice about how to best use it. use_dev_package() adds a dependency on an in-development GitHub package, adding the repo to Remotes so it will be automatically installed from the correct location.

Usage

use_package(package, type = "Imports")

use_dev_package(package, type = "Imports")

Arguments

package

Name of package to depend on.

type

Type of dependency: must be one of "Imports", "Suggests", "Depends", "Suggests", "Enhances", or "LinkingTo" (or unique abbreviation)

Examples

Run this code
# NOT RUN {
use_package("ggplot2")
use_package("dplyr", "suggests")
# }

Run the code above in your browser using DataCamp Workspace