assessmentGroup: Assessment Functions

View source: R/assessment.R

assessmentGroupR Documentation

Assessment Functions

Description

Calculates the specified assessment function for each participant and each condition.

Usage

assessmentGroup(inData, stopping.rule=c("OR", "AND", "STST"), correct=c(TRUE, FALSE), 
  fast=c(TRUE, FALSE), detection=TRUE, plotAt=TRUE, ...)

Arguments

inData

Data collected from a Double Factorial Paradigm experiment in standard form.

stopping.rule

Indicates whether to use OR, AND, or single-target-self-terminating (STST) processing baseline to calculate individual assessment functions.

plotAt

Indicates whether or not to generate plots of the assessment functions.

correct

Indicates whether to assess performance on correct trials.

fast

Indicates whether to use cumulative distribution functions or survivor functions to assess performance.

detection

Indicates whether to use a detection task baseline or a discrimination task baseline.

...

Arguments to be passed to plot function.

Details

For the details of the assessment functions, see assessment.

Value

A list containing the following components:

overview

A data frame indicating order of subject and condition for the assessment functions.

At.fn

Matrix with each row giving the values of the of the estimated assessment function for one participant in one condition for values of times. The rows match the ordering of statistic.

assessment

A list with the returned values from the assessment function for each participant and each condition.

times

Times at which the assessment functions are calculated in At.fn matrix.

Author(s)

Joe Houpt <joseph.houpt@utsa.edu>

References

Townsend, J.T. and Altieri, N. (2012). An accuracy-response time capacity assessment function that measures performance against standard parallel predictions. Psychological Review, 3, 500-516.

Donkin, C., Little, D. R., and Houpt, J. W. (2014). Assessing the speed-accuracy trade-off effect on the capacity of information processing. Journal of Experimental Psychology: Human Perception and Performance, 40(3), 1183.

See Also

assessment

Examples

## Not run: 
data(dots)
assessmentGroup(subset(dots, Condition=="OR"), 
  stopping.rule="OR", correct=TRUE, fast=FALSE, 
  detection=TRUE)
assessmentGroup(subset(dots, Condition=="AND"), 
  stopping.rule="AND", correct=TRUE, fast=TRUE, )

## End(Not run)

sft documentation built on June 8, 2025, 10:56 a.m.