Learn R Programming

atlantistools (version 0.4.3)

combine_runs: This function is used to combine model output from different simulations!

Description

This function is used to combine model output from different simulations!

Usage

combine_runs(outs, runs)

Arguments

outs

List of preprocessed Atlantis simulations. Each entry is a list generated with `preprocess()`.

runs

Vector of character strings giving the name of each simulation settings.

Value

Named list with the the same format as in `preprocess()`. Each dataframe has an additional column run.

See Also

Other combine functions: combine_groups

Examples

Run this code
# NOT RUN {
outs <- list(preprocess, preprocess)
runs <- c("run1", "run2")
test <- combine_runs(outs, runs)
names(test[[1]])
head(test[[1]])
# }

Run the code above in your browser using DataLab