Create a new strollur object
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)
