Skip to contents

Statistics to compare whether there is a real difference in EQR values of paired results. It is a low-level function used by the higher-level rict_compare function to compare the EQRs of two paired results.

Usage

compare_test(a, b)

Arguments

a

numeric vector containing results 'a'

b

numeric vector constainng results 'b'

Value

dataframe containing stats

Examples

if (FALSE) {
test <- compare_test(
  a = c(0.3, 0.4, 0.6),
  b = c(1, 0.9, 0.6)
)
}