Skip to contents

Configure your hipercow root. hipercow_configure creates the configuration and hipercow_configuration looks it up

Usage

hipercow_configure(driver, ..., root = NULL)

Arguments

driver

The hipercow driver; probably you want this to be "windows" as that is all we support at the moment!

...

Arguments passed to your driver; see Details for information about what is supported (this varies by driver).

root

Hipercow root, usually best NULL

Windows

Options supported by the windows driver:

  • shares: Information about shares (additional to the one mounted as your working directory) that should be made available to the cluster job. The use case here is where you need access to some files that are present on a shared drive and you will access these by absolute path (say M:/gis/shapefiles/) from your tasks. You can provide a share as a windows_path object, or a list of such objects. You will not typically need to use this option.

  • r_version: Control the R version used on the cluster. Typically hipercow will choose a version close to the one you are using to submit jobs, of the set available on the cluster. You can use this option to choose a specific version (e.g., pass "4.3.0" to select exactly that version).

See vignette("details") for more information about these options.

See also

hipercow_unconfigure, which removes a driver

Examples

if (FALSE) {
hipercow_configure("windows", r_version = "4.3.0")
}