rk.aiken_v)An RKWard plugin to calculate Aiken’s V coefficient and its score confidence intervals for assessing content validity. Features detailed tabular output and a
ggplot2bar chart with error bars and a live preview.
This repository contains the source code for rk.aiken.v,
an RKWard plugin package designed to calculate and interpret two key
coefficients proposed by L.R. Aiken for analyzing rating data.
This package provides a user-friendly graphical interface within RKWard for two distinct but related analyses:
This plugin calculates Aiken’s V, a widely used coefficient to quantify the content validity of a set of items as evaluated by a panel of judges or raters.
This plugin, added in version 0.02-0, calculates Aiken’s
H, an internal consistency or homogeneity coefficient for rating data
based on the formulas from Aiken (1985).
H_n): Measures the
agreement (homogeneity) among all raters for each individual item.H_m): Measures the
consistency (homogeneity) of each individual rater’s scores across all
items.mean H_m) is statistically significant.H_across_Raters results, the
H_across_Items results, and a summary of the significance
test.devtools
(Recommended)You can install this plugin directly from the repository using the
devtools package in R.
local({
## Preparar
require(devtools)
## Computar
install_github(
repo="AlfCano/rk.aiken_v"
)
## Imprimir el resultado
rk.header ("Resultados de Instalar desde git")
})
.zip file.Analysis menu.lo) and highest (hi)
possible values on your rating scale.p).The plugin will generate: 1. A summary table of the overall mean V and confidence interval limits. 2. A detailed table showing the V, lower limit (CI_L), and upper limit (CI_U) for each item. 3. A table of the parameters used in the calculation. 4. If selected, a bar chart visualizing the V and confidence interval for each item.
You can test the plug-in with this data set:
test_v <- data.frame(cbind(
"r1" = c(2, 2, 2, 2, 3, 3, 3, 1, 1, 1, 4, 4, 2, 1, 4, 4, 3, 3, 3, 3),
"r2" = c(5, 2, 3, 2, 3, 4, 3, 2, 2, 3, 4, 4, 3, 2, 5, 4, 4, 3, 4, 4),
"r3" = c(5, 3, 4, 3, 4, 4, 4, 3, 3, 5, 4, 5, 4, 3, 5, 5, 4, 3, 4, 4),
"r4" = c(5, 3, 4, 4, 5, 5, 4, 3, 3, 5, 4, 5, 4, 4, 5, 5, 4, 4, 5, 4),
"r5" = c(5, 3, 4, 5, 5, 5, 4, 4, 3, 5, 4, 5, 4, 4, 5, 5, 4, 4, 5, 5),
"r6" = c(5, 4, 5, 5, 5, 5, 4, 5, 4, 5, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5),
"r7" = c(5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5)
))
A longer treatment can be found here: https://alfcano.github.io/aiken_v/
This plugin is licensed under the GPL (>= 3).