---
title: "RAPI - Sum Score"
output: rmarkdown::html_vignette
vignette: >
%\VignetteIndexEntry{rapi_sum}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
```{r setup}
library(splithalfr)
```
This vignette describes a sum score of answers on questions from the 23-item Rutgers Alcohol Problem Inventory (RAPI)
([White & Labouvie, 1989](https://doi.org/10.15288/jsa.1989.50.30));
# Dataset
Load the included RAPI dataset and inspect its documentation.
```
data("ds_rapi", package = "splithalfr")
?ds_rapi
```
## Data preparation
The RAPI dataset is in wide format (i.e. one row per participant with each observation in a separate column). However, the `splithalfr` requires long format (i.e. one row per observation). Below we reshape the RAPI dataset to long format.
```
ds_rapi <- reshape(
ds_rapi,
varying = list(paste("V", 1 : 23, sep = "")),
idvar = "twnr",
direction = "long",
timevar = "item",
v.names = "score"
)
```
## Relevant variables
The columns used in this example are:
* `twnr`, which identifies participants
* `item`, which identifies items
* `score`, which contains the score of participant i on item j
# Scoring the RAPI
## Scoring function
The scoring function calculates the score of a single participant by summing their scores on each item.
```
fn_score <- function (ds) {
return (sum(ds$score))
}
```
## Scoring a single participant
Let's calculate the RAPI score for the participant with twnr 396. NB - This score has also been calculated manually via Excel in the splithalfr repository.
```
fn_score(subset(ds_rapi, twnr == 396))
```
## Scoring all participants
To calculate the RAPI score for each participant, we will use R's native `by` function and convert the result to a data frame.
```
scores <- by(
ds_rapi,
ds_rapi$twnr,
fn_score
)
data.frame(
twnr = names(scores),
score = as.vector(scores)
)
```
# Estimating split-half reliability
## Calculating split scores
To calculate split-half scores for each participant, use the function `by_split`. The first three arguments of this function are the same as for `by`. An additional set of arguments allow you to specify how to split the data and how often. In this vignette we will calculate scores of 1000 permutated splits. Since each participant received the same unique sequence of items, we enabled `match_participants`. See the vignette on splitting methods for more ways to split the data.
The `by_split` function returns a data frame with the following columns:
* `participant`, which identifies participants
* `replication`, which counts replications
* `score_1` and `score_2`, which are the scores calculated for each of the split datasets
*Calculating the split scores may take a while. By default, `by_split` uses all available CPU cores, but no progress bar is displayed. Setting `ncores = 1` will display a progress bar, but processing will be slower.*
```
split_scores <- by_split(
ds_rapi,
ds_rapi$twnr,
fn_score,
replications = 1000,
match_participants = TRUE
)
```
## Calculating reliability coefficients
Next, the output of `by_split` can be analyzed in order to estimate reliability. By default, functions are provided that calculate Spearman-Brown adjusted Pearson correlations (`spearman_brown`), Flanagan-Rulon (`flanagan_rulon`), Angoff-Feldt (`angoff_feldt`), and Intraclass Correlation (`short_icc`) coefficients. Each of these coefficient functions can be used with `split_coef` to calculate the corresponding coefficients per split, which can then be plotted or averaged, for instance via a simple `mean`.
```
# Since we're matching items across participants, let's assume essential
# tau-equivalence between splits and use the Flanagan-Rulon coefficient
coefs <- split_coefs(split_scores, flanagan_rulon)
# Distribution of coefficients
hist(coefs)
# Mean of coefficients
mean(coefs)
```
## Calculating bootstrapped confidence intervals for population reliability coefficient
Finally, we can estimate the Calculate bootstrapped confidence intervals for the value of the reliability coefficient in the population by bootstrapping participants. For this, we'll need to repeatedly sample participants from the population, calculate a collection of reliability coefficients between the split scores of that sample of participants, and average those coefficients together. Hence, the call to `split_ci` below, takes (1) the split scores produced by calling `by_split` (`split_scores`), (2) the reliability coefficient we used above (`flanagan_rulon`), and (3) the method for averaging coefficients we used above (`mean`).
*The bootstrap can take even longer than the split, and doesn't show any progress bar, but it also uses all available CPU cores by default.*
```
# Conduct a bootstrap (of participants)
bootstrap_result <- split_ci(split_scores, flanagan_rulon, mean)
# Report confidence intervals
library(boot)
print(boot.ci(bootstrap_result, type="bca"))
```