Skip to contents

Create a new strollur object

Usage

new_dataset(dataset_name = "", processors = NULL)

Arguments

dataset_name

string, a string containing the dataset name. Default = ""

processors

integer, number of cores to use during summary functions. Default = all available

Value

a strollur object

See also

The 'new' method in the strollur class

Examples


data <- new_dataset()

# to create a new dataset named "soil" and allow for all available
# processors during summary functions, run the following:

data <- new_dataset(dataset_name = "soil")

# to create a new dataset named "soil" and allow for 2
# processors during summary functions, run the following:

data <- new_dataset(dataset_name = "soil", processors = 2)