This vignette describes a sum score of answers on questions from the 23-item Rutgers Alcohol Problem Inventory (RAPI) (White & Labouvie, 1989);
Load the included RAPI dataset and inspect its documentation.
data("ds_rapi", package = "splithalfr")
?ds_rapi
The columns used in this example are:
Writing a scoring method for the splithalfr requires implementing two functions; a sets function that describes which sets of data should be split into halves and a score function that calculates a score.
The sets function receives data from a single participant and returns a list of datasets. In this case, we will generate a list with a single element, which contains a vector with data from each of the 23 items. As this data should be split by columns, we deliver the data as a vector.
rapi_fn_sets <- function (ds) {
return (list(
items = unlist(ds[paste("V", 1 : 23, sep = "")])
))
}
The score function receives the list from a single participant and returns the sum score.
rapi_fn_score <- function (sets) {
return (sum(sets$items))
}
By combining the sets and score functions, a score for a single participant can be calculated. For instance, the score of UserID 1 can be calculated via the statement below.
rapi_fn_score(rapi_fn_sets(subset(ds_rapi, twnr == 1)))
To calculate scores for each participant, call sh_apply with four arguments:
The sh_apply function will return a data frame with one row per participant, and two columns: one that identifies participants (“twnr” in this example) and a column “score”, that contains the output of the score function.
rapi_scores <- sh_apply(ds_rapi, "twnr", rapi_fn_sets, rapi_fn_score)
It is recommended to check your scoring method by calculating the score of a representative participant via a different approach. For splithalfr tests, the author has done so via Excel.
To calculate split-half scores for each participant, call sh_apply with an additional split_count argument, which specifies how many splits should be calculated. For each participant and split, the splithalfr will randomly divide the dataset of each element of sets into two halves that differ at most by one in size. When called with a split_count argument that is higher than zero, sh_apply returns a data frame with the following columns:
rapi_splits <- sh_apply(ds_rapi, "twnr", rapi_fn_sets, rapi_fn_score, split_count = 1000)
Next, the output of sh_apply can be analyzed in order to estimate reliability. By default, functions are provided that automatically calculate mean Spearman-Brown (mean_sb_by_split) and Flanagan-Rulon (mean_fr_by_split) coefficients. If any missing values were encountered in the data provided to these functions, they give a warning, and then pairwise remove the missing data before calculating reliability.
# Flanagan-Rulon
mean_fr_by_split(rapi_splits)