clean {renv}R Documentation

Clean a Project

Description

Clean up a project and its associated R libraries.

Usage

clean(project = NULL, ..., prompt = interactive())

Arguments

project

The project directory. If NULL, then the active project will be used. If no project is currently active, then the current working directory is used instead.

...

Unused arguments, reserved for future expansion. If any arguments are matched to ..., renv will signal an error.

prompt

Boolean; prompt the user before taking any action? For backwards compatibility, confirm is accepted as an alias for prompt.

Details

The following actions will be taken:

Value

The project directory, invisibly. Note that this function is normally called for its side effects.

Examples

## Not run: 

# clean the current project
renv::clean()


## End(Not run)

[Package renv version 0.11.0 Index]