- .data
Data in parameter-long form
- qualifiers
Columns that add context to observations (e.g., depth, zone, core)
- key
The column name that contains the column names of the data matrix
- value
The column name that contains the values
- fill
If a key/value combination doesn't exist in the input, this value will be
assigned in the data matrix. Generally, using NA for geochemical data and 0 for relative
abundance data is advised.
- select_if
Use ~TRUE to keep all columns; use ~all(is.finite(.)) to keep columns
with all finite values. See select_if.
- filter_all
Use any_vars(TRUE) to keep all observations; use all_vars(is.finite(.)) to
keep only observations with finite (non-missing) values. See filter_all.
- trans
A function that will be applied to all columns, column-wise. Use identity
to perform no transformation, use scale to scale each column to a mean of zero and
variance of 1. See mutate_all.
- groups
Use group_by or this argument to group by one or more columns (e.g., core or lake)
- ...
One or more columns to unnest.