This function allows you to calculate A prime from a vector hits and a vector a false alarms.
aPrime(data, h, f)
# Create some data
set.seed(1); library(dplyr)
axb <- data.frame(subj = sort(rep(1:10, each = 20, times = 10)),
group = gl(2, 1000, labels = c("g1", "g2")),
hit = c(rbinom(1000, size = c(0, 1), prob = .8),
rbinom(1000, size = c(0, 1), prob = .6)),
fa = c(rbinom(1000, size = c(0, 1), prob = .3),
rbinom(1000, size = c(0, 1), prob = .4))
)
# Calculate A' on entire data frame
aPrime(axb, hit, fa)
#> [1] 0.6796073
# Calculate A' for each subject
# by group, plot it, and run a
# linear model
axb %>%
group_by(subj, group) %>%
summarize(ap = aPrime(., hit, fa)) %T>%
{
plot(ap ~ as.numeric(group), data = .,
main = "A' as a function of group", xaxt = "n",
xlab = "Group", ylab = "A'")
axis(1, at = 1:2, labels = c("g1", "g2"))
abline(lm(ap ~ as.numeric(group), data = .), col = "red")
} %>%
lm(ap ~ group, data = .) %>%
summary()
#> `summarise()` has grouped output by 'subj'. You can override using the
#> `.groups` argument.
#> Warning: essentially perfect fit: summary may be unreliable
#>
#> Call:
#> lm(formula = ap ~ group, data = .)
#>
#> Residuals:
#> Min 1Q Median 3Q Max
#> -8.154e-17 -8.154e-17 0.000e+00 0.000e+00 3.261e-16
#>
#> Coefficients:
#> Estimate Std. Error t value Pr(>|t|)
#> (Intercept) 6.796e-01 5.766e-17 1.179e+16 <2e-16 ***
#> groupg2 -8.154e-17 8.154e-17 -1.000e+00 0.347
#> ---
#> Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
#>
#> Residual standard error: 1.289e-16 on 8 degrees of freedom
#> Multiple R-squared: 0.5465, Adjusted R-squared: 0.4898
#> F-statistic: 9.641 on 1 and 8 DF, p-value: 0.01456
#>