This function updates and checks parameters related to data set parsing based on the available data set.
.update_initial_settings(
formula = NULL,
data,
settings,
check_stringency = "strict"
)
A verified and updated list of parameter settings.
User-provided formula, may be absent (NULL
).
Data set as loaded using the .load_data
function.
List of parameter settings for data set parsing.
Specifies stringency of various checks. This is mostly:
strict
: default value used for summon_familiar
. Thoroughly checks
input data. Used internally for checking development data.
external_warn
: value used for extract_data
and related methods. Less
stringent checks, but will warn for possible issues. Used internally for
checking data for evaluation and explanation.
external
: value used for external methods such as predict
. Less
stringent checks, particularly for identifier and outcome columns, which may
be completely absent. Used internally for predict
.