Learn R Programming

DstarM (version 0.2.2)

rtDescriptives: Descriptives of reaction time data

Description

Descriptives of reaction time data

Usage

rtDescriptives(data)

Arguments

data

A reaction time dataset. Must be a dataframe with $rt, $condition and $response.

Value

An object of class 'D*M', containing raw counts and proportions for condition response pairs, conditions, and responses.

Details

This function and rtHist are helper functions to inspect raw data.

Examples

Run this code
# NOT RUN {
tt = seq(0, 5, .01)
dat = simData(n = 3e5, pars = rep(.5, 5), tt = tt, pdfND = dbeta(tt, 10, 30))
x = rtDescriptives(dat)
x
print(x, what = 'cr')
print(x, what = 'c')
print(x, what = 'r')
print(x, digits = 20)
# }

Run the code above in your browser using DataLab