Learn R Programming

matRiks (version 0.1.3)

ic: Incomplete correlate distractors (method)

Description

Generate incomplete correlate flip distractor from a matriks

Usage

ic(obj)

# S3 method for matriks ic(obj, ...)

ic_flip(obj, ...)

# S3 method for matriks ic_flip(obj, ...)

ic_inc(obj, ...)

# S3 method for matriks ic_inc(obj, ...)

ic_neg(obj, ...)

# S3 method for matriks ic_neg(obj, ...)

ic_size(obj, ...)

# S3 method for matriks ic_size(obj, ...)

Value

An object of class responses of length 4, which contains the incomplete correlate distractors of a matriks (IC-Inc, IC-Flip, IC-Neg, IC-Size). If the distractor could not be generated because of the constraints imposed by the matrix, it will be covered by a thick, black X and a warning is given.

An object of class responses of length 4, which contains the incomplete correlate distractors of a matriks. If the distractor could not be generated because of the constraints imposed by the matrix, it will be covered by a thick, black X and a warning is given.

An object of class figure that is the incomplete correlate flip distractor of a matrix. If the distractor could not be generated because of the constraints imposed by the matrix, it will be covered by a thick, black X and a warning is given.

An object of class figure that is the incomplete correlate flip distractor of a matrix. If the distractor could not be generated because of the constraints imposed by the matrix, it will be covered by a thick, black X and a warning is given.

An object of class figure that is the incomplete correlate incomplete distractor of a matrix. If the distractor could not be generated because of the constraints imposed by the matrix, it will be covered by a thick, black X and a warning is given.

An object of class figure that is the incomplete correlate incomplete distractor of a matrix. If the distractor could not be generated because of the constraints imposed by the matrix, it will be covered by a thick, black X and a warning is given.

An object of class figure that is the incomplete correlate negative distractor of a matrix. If the distractor could not be generated because of the constraints imposed by the matrix, it will be covered by a thick, black X and a warning is given.

An object of class figure that is the incomplete correlate negative distractor of a matrix. If the distractor could not be generated because of the constraints imposed by the matrix, it will be covered by a thick, black X and a warning is given.

An object of class figure that is the incomplete correlate size distractor of a matrix. If the distractor could not be generated because of the constraints imposed by the matrix, it will be covered by a thick, black X and a warning is given.

An object of class figure that is the incomplete correlate size distractor of a matrix. If the distractor could not be generated because of the constraints imposed by the matrix, it will be covered by a thick, black X and a warning is given.

Arguments

obj

matriks, The matriks for which the distractor is generated

...

other arguments

Methods (by class)

  • ic(matriks): Incomplete correlate distractors

    Generate incomplete correlate flip distractor from a matriks

Functions

  • ic_flip(): Incomplete correlate flip distractor (method)

    Generate incomplete correlate flip distractor from a matriks

  • ic_flip(matriks): Incomplete correlate flip distractor

    Generate incomplete correlate flip distractor from a matriks

  • ic_inc(): Incomplete correlate incomplete distractor (method)

    Generate incomplete correlate incomplete distractor from a matriks

  • ic_inc(matriks): Incomplete correlate incomplete distractor

    Generate incomplete correlate incomplete distractor from a matriks

  • ic_neg(): Incomplete correlate negative distractor (method)

    Generate incomplete negative incomplete distractor from a matriks

  • ic_neg(matriks): Incomplete correlate negative distractor

    Generate incomplete negative incomplete distractor from a matriks

  • ic_size(): Incomplete correlate size distractor (method)

    Generate incomplete size incomplete distractor from a matriks

  • ic_size(matriks): Incomplete correlate size

    Generate incomplete correlate size distractor of a matrix

Examples

Run this code
# create a matrix
m1 <- mat_apply(pacman(), hrules = "lty")
m2 <- mat_apply(dot(), "shade")
mat <- com(m1, m2)
# draw the matrix
draw(mat)
# draw the incomplete correlate distractors
draw(ic(mat))
# create a matrix
m1 <- mat_apply(pacman(), hrules = "lty")
m2 <- mat_apply(dot(), "shade")
mat <- com(m1, m2)
# draw the matrix
draw(mat)
# draw the incomplete correlate distractors
draw(ic(mat))
# create a matrix
m1 <- mat_apply(pacman(), hrules = "lty")
# draw the matrix
draw(m1)
# draw the incomplete correalate flip distractor
draw(ic_flip(m1))
# create a matrix
m1 <- mat_apply(pacman(), hrules = "lty")
# draw the matrix
draw(m1)
# draw the incomplete correalate flip distractor
draw(ic_flip(m1))
# create a matrix
m1 <- mat_apply(pacman(), hrules = "lty")
m2 <- mat_apply(dot(), "shade")
mat <- com(m1, m2)
# draw the matrix
draw(mat)
# draw the incomplete correlate incomplete distractor
draw(ic_inc(mat))
# create a matrix
m1 <- mat_apply(pacman(), hrules = "lty")
m2 <- mat_apply(dot(), "shade")
mat <- com(m1, m2)
# draw the matrix
draw(mat)
# draw the incomplete correlate incomplete distractor
draw(ic_inc(mat))
# create a matrix
m1 <- mat_apply(pacman(), hrules = "lty")
# draw the matrix
draw(m1)
# draw the incomplete correlate negative distractor
draw(ic_neg(m1))
# create a matrix
m1 <- mat_apply(pacman(), hrules = "lty")
# draw the matrix
draw(m1)
# draw the incomplete correlate negative distractor
draw(ic_neg(m1))
# create a matrix
m1 <- mat_apply(pacman(), hrules = "lty")
# draw the incomplete correlate size distractor
draw(ic_size(m1))
# create a matrix
m1 <- mat_apply(pacman(), hrules = "lty")
# draw the incomplete correlate size distractor
draw(ic_size(m1))

Run the code above in your browser using DataLab