API

Types / Constructors

Missing docstring.

Missing docstring for PsychometricTest(::AbstractVector{<:Item}, ::AbstractVector{<:Person}, ::AbstractVector{<:Response}). Check Documenter's build log for details.

PsychometricTests.PsychometricTestMethod
PsychometricTest(m::AbstractMatrix; scales = nothing)

Construct a PsychometricTest from a response matrix m.

julia> m = ones(Int, 10, 2);

julia> PsychometricTest(m);
source
Missing docstring.

Missing docstring for PsychometricTest(::Any). Check Documenter's build log for details.

PsychometricTests.ItemType
Item

An abstract type representing an item in a psychometric test.

Every implementation T <: Item must define the following interface:

  • getid: Get the unique item identifier.
source
PsychometricTests.PersonType
Person

An abstract type representing a person in a psychometric test.

Every implementation T <: Person must define the following interface:

  • getid: Get the unique person identifier.
source
PsychometricTests.ResponseType
Response

An abstract type representing a response in a psychometric test.

Every implementation of T <: Response must define the following interface:

source
Missing docstring.

Missing docstring for Matrix. Check Documenter's build log for details.

Accessors

Missing docstring.

Missing docstring for getitems. Check Documenter's build log for details.

Missing docstring.

Missing docstring for getpersons. Check Documenter's build log for details.

Missing docstring.

Missing docstring for getresponses. Check Documenter's build log for details.

Missing docstring.

Missing docstring for getitemid. Check Documenter's build log for details.

Missing docstring.

Missing docstring for getpersonid. Check Documenter's build log for details.

Missing docstring.

Missing docstring for nitems. Check Documenter's build log for details.

Missing docstring.

Missing docstring for npersons. Check Documenter's build log for details.

Missing docstring.

Missing docstring for nresponses. Check Documenter's build log for details.

Iterators

Missing docstring.

Missing docstring for eachitem. Check Documenter's build log for details.

Missing docstring.

Missing docstring for eachperson. Check Documenter's build log for details.

Missing docstring.

Missing docstring for eachresponse. Check Documenter's build log for details.

Descriptive Statistics

PsychometricTests.itemmeansFunction
itemmeans(test::PsychometricTest)
itemmeans(test::PsychometricTest, scale::Symbol)

Calculate the mean scores for each item in test.

source
PsychometricTests.itemscoresFunction
itemscores(test::PsychometricTest)
itemscores(test::PsychometricTest, scale::Symbol)

Calculate the total score for each item in test.

source
PsychometricTests.personscoresFunction
personscores(test::PsychometricTest)
personscores(test::PsychometricTest, scale::Symbol)

Calculate the total scores for each person in test.

source