Learn R Programming

performance (version 0.9.1)

item_split_half: Split-Half Reliability

Description

Compute various measures of internal consistencies for tests or item-scales of questionnaires.

Usage

item_split_half(x, digits = 3)

Value

A list with two elements: the split-half reliability splithalf

and the Spearman-Brown corrected split-half reliability spearmanbrown.

Arguments

x

A matrix or a data frame.

digits

Amount of digits for returned values.

Details

This function calculates the split-half reliability for items in x, including the Spearman-Brown adjustment. Splitting is done by selecting odd versus even columns in x. A value closer to 1 indicates greater internal consistency.

References

  • Spearman C. 1910. Correlation calculated from faulty data. British Journal of Psychology (3): 271-295. tools:::Rd_expr_doi("10.1111/j.2044-8295.1910.tb00206.x")

  • Brown W. 1910. Some experimental results in the correlation of mental abilities. British Journal of Psychology (3): 296-322. tools:::Rd_expr_doi("10.1111/j.2044-8295.1910.tb00207.x")

Examples

Run this code
data(mtcars)
x <- mtcars[, c("cyl", "gear", "carb", "hp")]
item_split_half(x)

Run the code above in your browser using DataLab