View source: R/matsindf_apply.R
build_matsindf_apply_data_frame | R Documentation |
This is an internal helper function that takes the types list and creates a data frame from which calculations can proceed.
build_matsindf_apply_data_frame(
.dat = NULL,
FUN,
...,
types = matsindf_apply_types(.dat, FUN = FUN, ... = ...)
)
.dat |
The value of the |
FUN |
The function supplied to |
... |
The |
types |
The types for |
This function enforces the precedence rules for matsindf_apply()
, namely that
variables found in ...
take priority over
variables found in .dat
, which take priority over
variables found in the default values of FUN
.
A data frame (actually, a tibble
)
with columns from dots
, .dat
, and the default values to FUN
,
according to precedence rules for matsindf_apply()
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.