View source: R/nested_data_matrix.R
nested_analysis | R Documentation |
Perform an analysis on a nested data matrix
nested_analysis( .data, .fun, ..., .output_column = "model", .reserved_names = NULL, .env = parent.frame() )
.data |
A data frame with a list column of data frames, possibly created using nested_data. |
.fun |
A model function |
... |
Passed to fun |
.output_column |
A column name in which the output of .fun should be stored. |
.reserved_names |
Names that should not be allowed as columns in any data frame within this object |
.env |
Passed to as_function |
.data with an additional list column of fun output
nd <- nested_data( alta_lake_geochem, qualifiers = c(age, depth, zone), key = param, value = value, trans = scale ) na <- nested_analysis(nd, vegan::rda, X = data) plot(na)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.