Description Usage Arguments Details Author(s) References See Also Examples
View source: R/ARC_correct_intrude.R
Adapted from Roenker, Thompson, & Brown (1971). Computes ARC using the correct recall (N) of an individual or group. Also produces several componets of ARC (E(r), Repetitions, and Max). DIFFERS from ARC_correct() because this "adjusts" Max and E(r) by omitting intrusions (coded as blank cells - so NA) as a category. See below "Use when" for explanation).
Use when:
You want all correct (1) items counted toward N - AND
There ARE intrusions (code as blank cells - NA) present in data - AND
You DO NOT want intrusions to count as their own category.
Adjusted Max = N - c (when N = correct recall (1's) and c = number of categories recalled NOT counting intrustions NA)
Adjusted E(r) = [ (∑ni^2) / N ] − 1 (when intrusions (NA) do NOT contribute to ni as a category, while N is still correct recal)
See "details" for more on the formula, notation definitions, and further explanation.
1 | ARC_correct_intrude(correct, category)
|
correct |
Numeric vector representing correct (1) and incorrect (0) responses. |
category |
Numeric or character vector representing category membership of associated item in x column. |
ARC = [r − E(r)] / [max − E(r)]
E(r) = [ (∑ni^2) / N ] − 1
r = number of category repetitions
N = number of recalled items (ONLY correct)
c = number of recalled categories
max = N − c and
ni = number of items recalled in each recalled category
Adjusted Max = N - c (when N = correct recall (1's) and c = number of categories recalled NOT counting intrustions NA)
Adjusted E(r) = [ (∑ni^2) / N ] − 1 (when intrusions (NA) do NOT contribute to ni as a category, and N is still correct recall)
Adjusted ARC is as above, only using Adjusted Max and Adjusted E(r) in the formula
General - This will count category repetitions (NOT including back-to-back intrusions (blank cells)) and the correct N is used in all computations (max and E(r)). Be sure data is properly processed (according to your protocol) before using.
Garrett. D Greeley
Ph.D. Student - Cognitive Science
Stony Brook University, NY
Roenker, D. L., Thompson, C. P., & Brown, S. C. (1971). Comparison of measures for the estimation of clustering in free recall. Psychological Bulletin, 76(1), 45–48. https://doi.org/10.1037/h0031355
ARC_correct()
ARC_total_intrude()
ARC_total()
1 2 3 4 5 6 | Data adapted from Roenker et al. (1971) - Also see ARC_3SE and other example data in the package for more examples and formatting.
recall_correct <- c(1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1)
recall_category <- c("a","a", NA ,"a","a","b","a","c","b","b","b","b","c","b","c","c","c","c")
ARC_correct_intrude(recall_correct, recall_category)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.