Description Usage Arguments Details Value Examples
View source: R/dstpFunctions.R
fitDSTP_fixed
fits the DSTP model to a single experimental condition
of human data (besides congruency, which it accounts for simutaneously).
This function allows the user to fix some parameters (using the fixed
variable).
1 2 3 4 5 |
data |
A data frame containing human data. See |
conditionName |
If there is an additional experimental manipulation (i.e., other than target congruency) the model can only be fit to one at a time. Tell the function which condition is currently being fit by passing a string to the function (e.g., "present"). The function by default assumes no additional condition (e.g., conditionName is set to NULL). |
parms |
A vector of starting parameters to use in the minimisation
routine. Must be in the order: |
cdfs |
A vector of quantile values for cumulative distribution functions to be estimated from the human data. The model will attempt to find the best-fitting parameters that match this distributional data. |
cafs |
A vector of quantiles for conditional accuracy functions to be estimated from the human data. The model will attempt to find the best- fitting parameters that match this distributional data. |
maxParms |
A vector containing upper limits on possible parameter values. |
nTrials |
An integer stating how many trials to simulate per iteration of the fitting cycle for each congruency type. |
multipleSubjects |
A boolean stating whether the fit is to multiple subjects (multipleSubjects = TRUE) or to a single subject (multipleSubjects = FALSE). |
fixed |
A vector of TRUE/FALSE stating whether each parameter should be
fixed (TRUE) or free (FALSE) during the fitting routine. Must be in the
order: |
This function can be employed by the user to find the best-fitting
parameters of the DSTP model to fit the human data of a single experimental
condition. The fitting procedure accounts for congruent and incongruent
trials simultaneously. The fit is obtained by a gradient-descent method
(using the Nelder-Mead method contained in R's optim
function) and is
fit to the proportion of data contained in human CDF and CAF distributional
data.
bestParameters
A vector of the best-fitting parameters found
by the current fit run.
g2
The value of Wilks likelihood ratio (G2) obtained by the
current fit run.
bBIC
The value of the Bayesian Information Criterion (BIC)
obtained by the current fit run. This is calculated using the BIC equation
for binned data, hence bBIC (binned BIC).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Load the example data the comes with the \code{flankr} package
data(exampleData)
# Fit the model to the condition "present" in the example data set using
# the default settings in the model.
fit <- fitDSTP(data = exampleData, conditionName = "present")
# Fix the first parameter (A) during the fit.
parms <- c(0.145, 0.08, 0.1, 0.07, 0.325, 1.3, 0.24)
fixed <- c(TRUE, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE)
fit <- fitDSTP_fixed(exampleData, conditionName = "present", parms = parms,
fixed = fixed)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.