update_model_decision_bias_incrementally | R Documentation |
Returns the model with updated decision biases.
update_model_decision_bias_incrementally(
model,
beta,
exposure,
exposure.category = "category",
exposure.cues = get_cue_labels_from_model(model),
exposure.order = NULL,
noise_treatment = if (!is.null(first(model$Sigma_noise))) "marginalize" else "no_noise",
lapse_treatment = "no_lapses",
keep.update_history = TRUE,
keep.exposure_data = FALSE,
verbose = FALSE
)
model |
A |
exposure |
|
exposure.category |
Name of variable in |
exposure.cues |
Name(s) of variables in |
exposure.order |
Name of variable in |
noise_treatment |
Determines whether and how multivariate Gaussian noise is considered during categorization.
See |
lapse_treatment |
Determines whether attentional lapses can occur during which no updating occurs.
See |
keep.update_history |
Should the history of the updating be stored and returned? If so, the output is tibble with the one model for each exposure observation. This is useful, for example, if one wants to visualize the changes in the category parameters, posterior predictive, categorization function, or alike across time. (default: 'TRUE') |
keep.exposure_data |
Should the input data be included in the output? If 'FALSE' then only the category and cue columns will be kept. If 'TRUE' then all columns will be kept. (default: 'FALSE') |
verbose |
Should more informative output be provided? |
An model object.
update_model_decision_bias_by_one_observation
, which is called by update_model_decision_bias_incrementally
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.