is.nested: is.nested

is.nestedR Documentation

is.nested

Description

test if factor1 is nested within factor2. that is, if each level of factor 1 Computes the A' sensitivity measure of the signal detection theory

Usage

is.nested(factor1,factor2)

Arguments

factor1,factor2

factors

Details

Return true iff all levels of factor1 correspond to at most one level of factor2.

See Also

are.crossed.

Examples

group <- gl(3,10) # 3 groups
subject <- gl(30,1) # 30 subjects
is.nested(subject,group)

subject<- gl(10,1,30) # 10 subjects
is.nested(subject,group)

chrplr/dprime documentation built on June 15, 2022, 11:59 a.m.