This website contains data and R code used for four-level multilevel modeling in Shin et al. (in press). Reproducible materials are also posted to the Center for Open Science.

Shin, M., Hart, S., & Simmons, M. (in press). Meta-analysis of single-case design research: Application of multilevel modeling. School Psychology.

Preprocess Data

wp_data <- read.csv("data/wp_data.csv")

# Create dummy variables
wp_data_dummy <-
  wp_data %>% dummy_cols(select_columns = c('designType', 'phase', 'complexityMeasure'))
colnames(wp_data_dummy) <- sub(".*_", "", colnames(wp_data_dummy))
wp_data_dummy %<>% select(
  authorYear, study, designType, multiBase, multiProbe, cluster, case, phase, A, B, M, 
  session, outcome, complexityMeasure, singleType, mixedType, generalization
)

# Center times and create interaction terms
wp_data_mixed <- wp_data_dummy %>%
  group_by(study, cluster, case) %>%
  mutate(
    min_A = ifelse(A == 1, min(session[A == 1]), NA),
    min_B = ifelse(B == 1, min(session[B == 1]), NA),
    min_M = ifelse(M == 1, min(session[M == 1]), NA)
  )

wp_data_mlm <- wp_data_mixed %>%
  group_by(study, cluster, case) %>%
  mutate(level_AB = as.integer(I(session >= first(na.omit(
    min_B
  ))))) %>%
  mutate(level_BM = as.integer(I(session >= first(na.omit(
    min_M
  ))))) %>%
  mutate(time_A = session - first(na.omit(min_A))) %>%
  mutate(time_B = session - first(na.omit(min_B))) %>%
  mutate(time_M = session - first(na.omit(min_M))) %>%
  mutate(trend_AB = time_B * level_AB) %>%
  mutate(trend_BM = time_M * level_BM) %>%
  select(-min_A,-min_B,-min_M)

wp_data_mlm <- na_replace(wp_data_mlm, 0)

wp_data_mlm_kb <- wp_data_mlm %>%
  kbl(align = "c") %>%
  kable_styling(
    bootstrap_options = c("striped", "hover", "condensed"),
    full_width = T,
    font_size = 12,
    fixed_thead = T
  ) %>%
  scroll_box(height = "400px")

wp_data_mlm %>%
  download_this(
    output_name = "Authors (2023) Dataset",
    output_extension = ".xlsx",
    button_label = "Download",
    button_type = "default",
    has_icon = TRUE,
    icon = "fa fa-save",
    class = "buttom_small"
  )
authorYear study designType multiBase multiProbe cluster case phase A B M session outcome complexityMeasure singleType mixedType generalization level_AB level_BM time_A time_B time_M trend_AB trend_BM
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 A 1 0 0 1 34 mixedType 0 1 0 0 0 0 -9 -28 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 A 1 0 0 2 29 mixedType 0 1 0 0 0 1 -8 -27 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 A 1 0 0 3 32 mixedType 0 1 0 0 0 2 -7 -26 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 A 1 0 0 4 36 mixedType 0 1 0 0 0 3 -6 -25 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 A 1 0 0 5 37 mixedType 0 1 0 0 0 4 -5 -24 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 A 1 0 0 6 34 mixedType 0 1 0 0 0 5 -4 -23 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 B 0 1 0 10 71 mixedType 0 1 0 1 0 9 0 -19 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 B 0 1 0 12 98 mixedType 0 1 0 1 0 11 2 -17 2 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 B 0 1 0 14 89 mixedType 0 1 0 1 0 13 4 -15 4 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 B 0 1 0 16 99 mixedType 0 1 0 1 0 15 6 -13 6 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 B 0 1 0 18 98 mixedType 0 1 0 1 0 17 8 -11 8 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 M 0 0 1 29 90 mixedType 0 1 0 1 1 28 19 0 19 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 1 M 0 0 1 34 90 mixedType 0 1 0 1 1 33 24 5 24 5
Alghamdi et al. (2020) 1 multiProbe 0 1 1 2 A 1 0 0 1 35 mixedType 0 1 0 0 0 0 -14 -33 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 2 A 1 0 0 2 49 mixedType 0 1 0 0 0 1 -13 -32 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 2 A 1 0 0 4 55 mixedType 0 1 0 0 0 3 -11 -30 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 2 A 1 0 0 10 44 mixedType 0 1 0 0 0 9 -5 -24 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 2 A 1 0 0 11 35 mixedType 0 1 0 0 0 10 -4 -23 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 2 B 0 1 0 15 84 mixedType 0 1 0 1 0 14 0 -19 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 2 B 0 1 0 17 87 mixedType 0 1 0 1 0 16 2 -17 2 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 2 B 0 1 0 19 80 mixedType 0 1 0 1 0 18 4 -15 4 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 2 B 0 1 0 21 97 mixedType 0 1 0 1 0 20 6 -13 6 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 2 B 0 1 0 23 94 mixedType 0 1 0 1 0 22 8 -11 8 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 2 M 0 0 1 34 87 mixedType 0 1 0 1 1 33 19 0 19 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 2 M 0 0 1 39 99 mixedType 0 1 0 1 1 38 24 5 24 5
Alghamdi et al. (2020) 1 multiProbe 0 1 1 3 A 1 0 0 1 14 mixedType 0 1 0 0 0 0 -18 -32 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 3 A 1 0 0 2 13 mixedType 0 1 0 0 0 1 -17 -31 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 3 A 1 0 0 4 9 mixedType 0 1 0 0 0 3 -15 -29 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 3 A 1 0 0 14 17 mixedType 0 1 0 0 0 13 -5 -19 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 3 A 1 0 0 15 0 mixedType 0 1 0 0 0 14 -4 -18 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 3 B 0 1 0 19 40 mixedType 0 1 0 1 0 18 0 -14 0 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 3 B 0 1 0 21 69 mixedType 0 1 0 1 0 20 2 -12 2 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 3 B 0 1 0 23 80 mixedType 0 1 0 1 0 22 4 -10 4 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 3 B 0 1 0 25 93 mixedType 0 1 0 1 0 24 6 -8 6 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 3 B 0 1 0 27 78 mixedType 0 1 0 1 0 26 8 -6 8 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 3 M 0 0 1 33 84 mixedType 0 1 0 1 1 32 14 0 14 0
Alghamdi et al. (2020) 1 multiProbe 0 1 1 3 M 0 0 1 39 86 mixedType 0 1 0 1 1 38 20 6 20 6
Bundock et al. (2021) 2 multiProbe 0 1 1 1 A 1 0 0 1 0 singleType 1 0 0 0 0 0 -29 -96 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 1 A 1 0 0 3 0 singleType 1 0 0 0 0 2 -27 -94 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 1 A 1 0 0 6 0 singleType 1 0 0 0 0 5 -24 -91 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 1 A 1 0 0 12 0 singleType 1 0 0 0 0 11 -18 -85 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 1 A 1 0 0 19 0 singleType 1 0 0 0 0 18 -11 -78 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 1 B 0 1 0 30 11 singleType 1 0 0 1 0 29 0 -67 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 1 B 0 1 0 50 14 singleType 1 0 0 1 0 49 20 -47 20 0
Bundock et al. (2021) 2 multiProbe 0 1 1 1 B 0 1 0 77 7 singleType 1 0 0 1 0 76 47 -20 47 0
Bundock et al. (2021) 2 multiProbe 0 1 1 1 B 0 1 0 93 39 singleType 1 0 0 1 0 92 63 -4 63 0
Bundock et al. (2021) 2 multiProbe 0 1 1 1 M 0 0 1 97 4 singleType 1 0 0 1 1 96 67 0 67 0
Bundock et al. (2021) 2 multiProbe 0 1 1 1 M 0 0 1 102 14 singleType 1 0 0 1 1 101 72 5 72 5
Bundock et al. (2021) 2 multiProbe 0 1 1 1 M 0 0 1 107 11 singleType 1 0 0 1 1 106 77 10 77 10
Bundock et al. (2021) 2 multiProbe 0 1 1 1 M 0 0 1 114 14 singleType 1 0 0 1 1 113 84 17 84 17
Bundock et al. (2021) 2 multiProbe 0 1 1 1 M 0 0 1 119 14 singleType 1 0 0 1 1 118 89 22 89 22
Bundock et al. (2021) 2 multiProbe 0 1 1 1 M 0 0 1 123 29 singleType 1 0 0 1 1 122 93 26 93 26
Bundock et al. (2021) 2 multiProbe 0 1 1 2 A 1 0 0 37 14 singleType 1 0 0 0 0 0 -38 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 2 A 1 0 0 40 14 singleType 1 0 0 0 0 3 -35 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 2 A 1 0 0 44 25 singleType 1 0 0 0 0 7 -31 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 2 A 1 0 0 49 11 singleType 1 0 0 0 0 12 -26 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 2 A 1 0 0 55 18 singleType 1 0 0 0 0 18 -20 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 2 A 1 0 0 58 18 singleType 1 0 0 0 0 21 -17 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 2 A 1 0 0 63 11 singleType 1 0 0 0 0 26 -12 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 2 B 0 1 0 75 21 singleType 1 0 0 1 0 38 0 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 1 2 B 0 1 0 103 21 singleType 1 0 0 1 0 66 28 0 28 0
Bundock et al. (2021) 2 multiProbe 0 1 1 2 B 0 1 0 134 14 singleType 1 0 0 1 0 97 59 0 59 0
Bundock et al. (2021) 2 multiProbe 0 1 1 2 B 0 1 0 144 64 singleType 1 0 0 1 0 107 69 0 69 0
Bundock et al. (2021) 2 multiProbe 0 1 2 1 A 1 0 0 1 0 singleType 1 0 0 0 0 0 -29 -96 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 1 A 1 0 0 3 0 singleType 1 0 0 0 0 2 -27 -94 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 1 A 1 0 0 6 0 singleType 1 0 0 0 0 5 -24 -91 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 1 A 1 0 0 12 0 singleType 1 0 0 0 0 11 -18 -85 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 1 A 1 0 0 19 0 singleType 1 0 0 0 0 18 -11 -78 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 1 B 0 1 0 30 8 singleType 1 0 0 1 0 29 0 -67 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 1 B 0 1 0 50 0 singleType 1 0 0 1 0 49 20 -47 20 0
Bundock et al. (2021) 2 multiProbe 0 1 2 1 B 0 1 0 77 0 singleType 1 0 0 1 0 76 47 -20 47 0
Bundock et al. (2021) 2 multiProbe 0 1 2 1 B 0 1 0 93 11 singleType 1 0 0 1 0 92 63 -4 63 0
Bundock et al. (2021) 2 multiProbe 0 1 2 1 M 0 0 1 97 3 singleType 1 0 0 1 1 96 67 0 67 0
Bundock et al. (2021) 2 multiProbe 0 1 2 1 M 0 0 1 102 11 singleType 1 0 0 1 1 101 72 5 72 5
Bundock et al. (2021) 2 multiProbe 0 1 2 1 M 0 0 1 107 8 singleType 1 0 0 1 1 106 77 10 77 10
Bundock et al. (2021) 2 multiProbe 0 1 2 1 M 0 0 1 114 11 singleType 1 0 0 1 1 113 84 17 84 17
Bundock et al. (2021) 2 multiProbe 0 1 2 1 M 0 0 1 119 8 singleType 1 0 0 1 1 118 89 22 89 22
Bundock et al. (2021) 2 multiProbe 0 1 2 1 M 0 0 1 123 0 singleType 1 0 0 1 1 122 93 26 93 26
Bundock et al. (2021) 2 multiProbe 0 1 2 2 A 1 0 0 37 14 singleType 1 0 0 0 0 0 -38 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 2 A 1 0 0 40 11 singleType 1 0 0 0 0 3 -35 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 2 A 1 0 0 44 33 singleType 1 0 0 0 0 7 -31 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 2 A 1 0 0 49 6 singleType 1 0 0 0 0 12 -26 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 2 A 1 0 0 55 36 singleType 1 0 0 0 0 18 -20 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 2 A 1 0 0 58 14 singleType 1 0 0 0 0 21 -17 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 2 A 1 0 0 63 6 singleType 1 0 0 0 0 26 -12 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 2 B 0 1 0 75 8 singleType 1 0 0 1 0 38 0 0 0 0
Bundock et al. (2021) 2 multiProbe 0 1 2 2 B 0 1 0 103 14 singleType 1 0 0 1 0 66 28 0 28 0
Bundock et al. (2021) 2 multiProbe 0 1 2 2 B 0 1 0 134 17 singleType 1 0 0 1 0 97 59 0 59 0
Bundock et al. (2021) 2 multiProbe 0 1 2 2 B 0 1 0 144 31 singleType 1 0 0 1 0 107 69 0 69 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 A 1 0 0 1 0 singleType 1 0 0 0 0 0 -5 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 A 1 0 0 2 0 singleType 1 0 0 0 0 1 -4 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 A 1 0 0 3 0 singleType 1 0 0 0 0 2 -3 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 A 1 0 0 4 0 singleType 1 0 0 0 0 3 -2 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 A 1 0 0 5 0 singleType 1 0 0 0 0 4 -1 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 B 0 1 0 6 100 singleType 1 0 0 1 0 5 0 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 B 0 1 0 7 100 singleType 1 0 0 1 0 6 1 0 1 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 B 0 1 0 8 100 singleType 1 0 0 1 0 7 2 0 2 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 B 0 1 0 9 100 singleType 1 0 0 1 0 8 3 0 3 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 B 0 1 0 10 100 singleType 1 0 0 1 0 9 4 0 4 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 B 0 1 0 11 100 singleType 1 0 0 1 0 10 5 0 5 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 B 0 1 0 19 80 singleType 1 0 0 1 0 18 13 0 13 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 B 0 1 0 27 100 singleType 1 0 0 1 0 26 21 0 21 0
Edwards et al. (2020) 3 multiProbe 0 1 1 1 B 0 1 0 32 100 singleType 1 0 0 1 0 31 26 0 26 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 A 1 0 0 1 0 singleType 1 0 0 0 0 0 -10 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 A 1 0 0 6 0 singleType 1 0 0 0 0 5 -5 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 A 1 0 0 7 0 singleType 1 0 0 0 0 6 -4 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 A 1 0 0 8 0 singleType 1 0 0 0 0 7 -3 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 A 1 0 0 9 0 singleType 1 0 0 0 0 8 -2 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 A 1 0 0 10 0 singleType 1 0 0 0 0 9 -1 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 B 0 1 0 11 100 singleType 1 0 0 1 0 10 0 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 B 0 1 0 12 100 singleType 1 0 0 1 0 11 1 0 1 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 B 0 1 0 13 90 singleType 1 0 0 1 0 12 2 0 2 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 B 0 1 0 14 100 singleType 1 0 0 1 0 13 3 0 3 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 B 0 1 0 15 100 singleType 1 0 0 1 0 14 4 0 4 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 B 0 1 0 16 100 singleType 1 0 0 1 0 15 5 0 5 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 B 0 1 0 17 100 singleType 1 0 0 1 0 16 6 0 6 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 B 0 1 0 18 100 singleType 1 0 0 1 0 17 7 0 7 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 B 0 1 0 19 100 singleType 1 0 0 1 0 18 8 0 8 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 B 0 1 0 27 100 singleType 1 0 0 1 0 26 16 0 16 0
Edwards et al. (2020) 3 multiProbe 0 1 1 2 B 0 1 0 36 100 singleType 1 0 0 1 0 35 25 0 25 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 A 1 0 0 1 0 singleType 1 0 0 0 0 0 -18 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 A 1 0 0 6 0 singleType 1 0 0 0 0 5 -13 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 A 1 0 0 11 0 singleType 1 0 0 0 0 10 -8 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 A 1 0 0 14 0 singleType 1 0 0 0 0 13 -5 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 A 1 0 0 15 0 singleType 1 0 0 0 0 14 -4 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 A 1 0 0 16 0 singleType 1 0 0 0 0 15 -3 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 A 1 0 0 17 0 singleType 1 0 0 0 0 16 -2 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 A 1 0 0 18 0 singleType 1 0 0 0 0 17 -1 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 B 0 1 0 19 80 singleType 1 0 0 1 0 18 0 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 B 0 1 0 20 100 singleType 1 0 0 1 0 19 1 0 1 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 B 0 1 0 22 100 singleType 1 0 0 1 0 21 3 0 3 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 B 0 1 0 23 100 singleType 1 0 0 1 0 22 4 0 4 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 B 0 1 0 24 100 singleType 1 0 0 1 0 23 5 0 5 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 B 0 1 0 25 100 singleType 1 0 0 1 0 24 6 0 6 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 B 0 1 0 26 100 singleType 1 0 0 1 0 25 7 0 7 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 B 0 1 0 27 90 singleType 1 0 0 1 0 26 8 0 8 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 B 0 1 0 39 100 singleType 1 0 0 1 0 38 20 0 20 0
Edwards et al. (2020) 3 multiProbe 0 1 1 3 B 0 1 0 41 100 singleType 1 0 0 1 0 40 22 0 22 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 A 1 0 0 1 0 singleType 1 0 0 0 0 0 -26 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 A 1 0 0 6 0 singleType 1 0 0 0 0 5 -21 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 A 1 0 0 11 0 singleType 1 0 0 0 0 10 -16 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 A 1 0 0 14 0 singleType 1 0 0 0 0 13 -13 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 A 1 0 0 19 0 singleType 1 0 0 0 0 18 -8 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 A 1 0 0 22 0 singleType 1 0 0 0 0 21 -5 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 A 1 0 0 23 0 singleType 1 0 0 0 0 22 -4 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 A 1 0 0 24 0 singleType 1 0 0 0 0 23 -3 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 A 1 0 0 25 0 singleType 1 0 0 0 0 24 -2 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 A 1 0 0 26 0 singleType 1 0 0 0 0 25 -1 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 27 100 singleType 1 0 0 1 0 26 0 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 28 70 singleType 1 0 0 1 0 27 1 0 1 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 29 100 singleType 1 0 0 1 0 28 2 0 2 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 30 100 singleType 1 0 0 1 0 29 3 0 3 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 31 90 singleType 1 0 0 1 0 30 4 0 4 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 32 100 singleType 1 0 0 1 0 31 5 0 5 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 33 80 singleType 1 0 0 1 0 32 6 0 6 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 34 100 singleType 1 0 0 1 0 33 7 0 7 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 35 100 singleType 1 0 0 1 0 34 8 0 8 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 36 100 singleType 1 0 0 1 0 35 9 0 9 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 37 100 singleType 1 0 0 1 0 36 10 0 10 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 38 100 singleType 1 0 0 1 0 37 11 0 11 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 39 100 singleType 1 0 0 1 0 38 12 0 12 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 45 83 singleType 1 0 0 1 0 44 18 0 18 0
Edwards et al. (2020) 3 multiProbe 0 1 1 4 B 0 1 0 46 90 singleType 1 0 0 1 0 45 19 0 19 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 A 1 0 0 1 0 singleType 1 0 0 0 0 0 -38 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 A 1 0 0 6 0 singleType 1 0 0 0 0 5 -33 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 A 1 0 0 11 0 singleType 1 0 0 0 0 10 -28 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 A 1 0 0 14 0 singleType 1 0 0 0 0 13 -25 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 A 1 0 0 19 0 singleType 1 0 0 0 0 18 -20 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 A 1 0 0 27 0 singleType 1 0 0 0 0 26 -12 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 A 1 0 0 34 0 singleType 1 0 0 0 0 33 -5 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 A 1 0 0 35 0 singleType 1 0 0 0 0 34 -4 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 A 1 0 0 36 0 singleType 1 0 0 0 0 35 -3 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 A 1 0 0 37 0 singleType 1 0 0 0 0 36 -2 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 A 1 0 0 38 0 singleType 1 0 0 0 0 37 -1 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 B 0 1 0 39 100 singleType 1 0 0 1 0 38 0 0 0 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 B 0 1 0 40 100 singleType 1 0 0 1 0 39 1 0 1 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 B 0 1 0 41 100 singleType 1 0 0 1 0 40 2 0 2 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 B 0 1 0 42 100 singleType 1 0 0 1 0 41 3 0 3 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 B 0 1 0 43 100 singleType 1 0 0 1 0 42 4 0 4 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 B 0 1 0 44 100 singleType 1 0 0 1 0 43 5 0 5 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 B 0 1 0 45 100 singleType 1 0 0 1 0 44 6 0 6 0
Edwards et al. (2020) 3 multiProbe 0 1 1 5 B 0 1 0 47 100 singleType 1 0 0 1 0 46 8 0 8 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -6 -15 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 A 1 0 0 2 0 mixedType 0 1 0 0 0 1 -5 -14 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -4 -13 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -3 -12 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -2 -11 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 A 1 0 0 6 0 generalization 0 0 1 0 0 5 -1 -10 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 B 0 1 0 7 74 mixedType 0 1 0 1 0 6 0 -9 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 B 0 1 0 8 80 mixedType 0 1 0 1 0 7 1 -8 1 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 B 0 1 0 9 70 mixedType 0 1 0 1 0 8 2 -7 2 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 B 0 1 0 10 92 mixedType 0 1 0 1 0 9 3 -6 3 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 B 0 1 0 11 92 mixedType 0 1 0 1 0 10 4 -5 4 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 M 0 0 1 16 80 mixedType 0 1 0 1 1 15 9 0 9 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 M 0 0 1 22 82 generalization 0 0 1 1 1 21 15 6 15 6
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 1 M 0 0 1 23 70 mixedType 0 1 0 1 1 22 16 7 16 7
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -10 -21 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 A 1 0 0 2 0 mixedType 0 1 0 0 0 1 -9 -20 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -8 -19 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -7 -18 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -6 -17 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 A 1 0 0 6 4 generalization 0 0 1 0 0 5 -5 -16 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 A 1 0 0 10 6 mixedType 0 1 0 0 0 9 -1 -12 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 B 0 1 0 11 98 mixedType 0 1 0 1 0 10 0 -11 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 B 0 1 0 12 100 mixedType 0 1 0 1 0 11 1 -10 1 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 B 0 1 0 13 100 mixedType 0 1 0 1 0 12 2 -9 2 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 B 0 1 0 14 100 mixedType 0 1 0 1 0 13 3 -8 3 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 B 0 1 0 15 98 mixedType 0 1 0 1 0 14 4 -7 4 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 M 0 0 1 22 98 generalization 0 0 1 1 1 21 11 0 11 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 M 0 0 1 24 100 mixedType 0 1 0 1 1 23 13 2 13 2
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 2 M 0 0 1 26 98 mixedType 0 1 0 1 1 25 15 4 15 4
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -15 -21 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 A 1 0 0 2 0 mixedType 0 1 0 0 0 1 -14 -20 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -13 -19 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -12 -18 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -11 -17 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 A 1 0 0 6 2 generalization 0 0 1 0 0 5 -10 -16 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 A 1 0 0 10 12 mixedType 0 1 0 0 0 9 -6 -12 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 A 1 0 0 15 14 mixedType 0 1 0 0 0 14 -1 -7 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 B 0 1 0 16 98 mixedType 0 1 0 1 0 15 0 -6 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 B 0 1 0 17 100 mixedType 0 1 0 1 0 16 1 -5 1 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 B 0 1 0 18 96 mixedType 0 1 0 1 0 17 2 -4 2 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 B 0 1 0 19 94 mixedType 0 1 0 1 0 18 3 -3 3 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 B 0 1 0 20 98 mixedType 0 1 0 1 0 19 4 -2 4 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 M 0 0 1 22 100 generalization 0 0 1 1 1 21 6 0 6 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 M 0 0 1 25 98 mixedType 0 1 0 1 1 24 9 3 9 3
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 3 M 0 0 1 27 96 mixedType 0 1 0 1 1 26 11 5 11 5
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -6 -15 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 A 1 0 0 2 0 mixedType 0 1 0 0 0 1 -5 -14 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -4 -13 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -3 -12 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -2 -11 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 A 1 0 0 6 0 generalization 0 0 1 0 0 5 -1 -10 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 B 0 1 0 7 92 mixedType 0 1 0 1 0 6 0 -9 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 B 0 1 0 8 80 mixedType 0 1 0 1 0 7 1 -8 1 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 B 0 1 0 9 80 mixedType 0 1 0 1 0 8 2 -7 2 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 B 0 1 0 10 82 mixedType 0 1 0 1 0 9 3 -6 3 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 B 0 1 0 11 80 mixedType 0 1 0 1 0 10 4 -5 4 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 M 0 0 1 16 84 mixedType 0 1 0 1 1 15 9 0 9 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 M 0 0 1 22 90 generalization 0 0 1 1 1 21 15 6 15 6
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 4 M 0 0 1 23 82 mixedType 0 1 0 1 1 22 16 7 16 7
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 A 1 0 0 4 0 mixedType 0 1 0 0 0 0 -7 -18 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 A 1 0 0 5 0 mixedType 0 1 0 0 0 1 -6 -17 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 A 1 0 0 6 0 mixedType 0 1 0 0 0 2 -5 -16 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 A 1 0 0 7 0 mixedType 0 1 0 0 0 3 -4 -15 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 A 1 0 0 8 0 mixedType 0 1 0 0 0 4 -3 -14 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 A 1 0 0 9 0 generalization 0 0 1 0 0 5 -2 -13 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 A 1 0 0 10 0 mixedType 0 1 0 0 0 6 -1 -12 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 B 0 1 0 11 82 mixedType 0 1 0 1 0 7 0 -11 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 B 0 1 0 12 88 mixedType 0 1 0 1 0 8 1 -10 1 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 B 0 1 0 13 90 mixedType 0 1 0 1 0 9 2 -9 2 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 B 0 1 0 14 90 mixedType 0 1 0 1 0 10 3 -8 3 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 B 0 1 0 15 90 mixedType 0 1 0 1 0 11 4 -7 4 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 M 0 0 1 22 90 generalization 0 0 1 1 1 18 11 0 11 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 M 0 0 1 25 90 mixedType 0 1 0 1 1 21 14 3 14 3
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 5 M 0 0 1 27 94 mixedType 0 1 0 1 1 23 16 5 16 5
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 A 1 0 0 4 0 mixedType 0 1 0 0 0 0 -12 -18 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 A 1 0 0 5 0 mixedType 0 1 0 0 0 1 -11 -17 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 A 1 0 0 6 0 mixedType 0 1 0 0 0 2 -10 -16 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 A 1 0 0 7 0 mixedType 0 1 0 0 0 3 -9 -15 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 A 1 0 0 8 0 mixedType 0 1 0 0 0 4 -8 -14 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 A 1 0 0 9 0 generalization 0 0 1 0 0 5 -7 -13 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 A 1 0 0 10 6 mixedType 0 1 0 0 0 6 -6 -12 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 A 1 0 0 15 10 mixedType 0 1 0 0 0 11 -1 -7 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 B 0 1 0 16 88 mixedType 0 1 0 1 0 12 0 -6 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 B 0 1 0 17 88 mixedType 0 1 0 1 0 13 1 -5 1 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 B 0 1 0 18 92 mixedType 0 1 0 1 0 14 2 -4 2 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 B 0 1 0 19 84 mixedType 0 1 0 1 0 15 3 -3 3 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 B 0 1 0 20 94 mixedType 0 1 0 1 0 16 4 -2 4 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 M 0 0 1 22 82 generalization 0 0 1 1 1 18 6 0 6 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 M 0 0 1 25 88 mixedType 0 1 0 1 1 21 9 3 9 3
Freeman-Green et al. (2015) 4 multiProbe 0 1 1 6 M 0 0 1 27 84 mixedType 0 1 0 1 1 23 11 5 11 5
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -6 -15 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 A 1 0 0 2 0 mixedType 0 1 0 0 0 1 -5 -14 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 A 1 0 0 3 20 mixedType 0 1 0 0 0 2 -4 -13 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -3 -12 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 A 1 0 0 5 20 mixedType 0 1 0 0 0 4 -2 -11 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 A 1 0 0 6 0 generalization 0 0 1 0 0 5 -1 -10 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 B 0 1 0 7 60 mixedType 0 1 0 1 0 6 0 -9 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 B 0 1 0 8 60 mixedType 0 1 0 1 0 7 1 -8 1 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 B 0 1 0 9 50 mixedType 0 1 0 1 0 8 2 -7 2 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 B 0 1 0 10 90 mixedType 0 1 0 1 0 9 3 -6 3 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 B 0 1 0 11 80 mixedType 0 1 0 1 0 10 4 -5 4 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 M 0 0 1 16 80 mixedType 0 1 0 1 1 15 9 0 9 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 M 0 0 1 22 60 generalization 0 0 1 1 1 21 15 6 15 6
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 1 M 0 0 1 23 70 mixedType 0 1 0 1 1 22 16 7 16 7
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 A 1 0 0 1 20 mixedType 0 1 0 0 0 0 -10 -21 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 A 1 0 0 2 20 mixedType 0 1 0 0 0 1 -9 -20 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 A 1 0 0 3 80 mixedType 0 1 0 0 0 2 -8 -19 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 A 1 0 0 4 20 mixedType 0 1 0 0 0 3 -7 -18 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 A 1 0 0 5 20 mixedType 0 1 0 0 0 4 -6 -17 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 A 1 0 0 6 50 generalization 0 0 1 0 0 5 -5 -16 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 A 1 0 0 10 40 mixedType 0 1 0 0 0 9 -1 -12 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 B 0 1 0 11 90 mixedType 0 1 0 1 0 10 0 -11 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 B 0 1 0 12 100 mixedType 0 1 0 1 0 11 1 -10 1 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 B 0 1 0 13 100 mixedType 0 1 0 1 0 12 2 -9 2 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 B 0 1 0 14 100 mixedType 0 1 0 1 0 13 3 -8 3 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 B 0 1 0 15 100 mixedType 0 1 0 1 0 14 4 -7 4 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 M 0 0 1 22 100 generalization 0 0 1 1 1 21 11 0 11 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 M 0 0 1 24 100 mixedType 0 1 0 1 1 23 13 2 13 2
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 2 M 0 0 1 26 90 mixedType 0 1 0 1 1 25 15 4 15 4
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -15 -21 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 A 1 0 0 2 0 mixedType 0 1 0 0 0 1 -14 -20 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 A 1 0 0 3 10 mixedType 0 1 0 0 0 2 -13 -19 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 A 1 0 0 4 20 mixedType 0 1 0 0 0 3 -12 -18 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 A 1 0 0 5 30 mixedType 0 1 0 0 0 4 -11 -17 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 A 1 0 0 6 10 generalization 0 0 1 0 0 5 -10 -16 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 A 1 0 0 10 30 mixedType 0 1 0 0 0 9 -6 -12 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 A 1 0 0 15 20 mixedType 0 1 0 0 0 14 -1 -7 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 B 0 1 0 16 80 mixedType 0 1 0 1 0 15 0 -6 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 B 0 1 0 17 80 mixedType 0 1 0 1 0 16 1 -5 1 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 B 0 1 0 18 100 mixedType 0 1 0 1 0 17 2 -4 2 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 B 0 1 0 19 80 mixedType 0 1 0 1 0 18 3 -3 3 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 B 0 1 0 20 100 mixedType 0 1 0 1 0 19 4 -2 4 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 M 0 0 1 22 80 generalization 0 0 1 1 1 21 6 0 6 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 M 0 0 1 25 80 mixedType 0 1 0 1 1 24 9 3 9 3
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 3 M 0 0 1 27 70 mixedType 0 1 0 1 1 26 11 5 11 5
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -6 -15 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 A 1 0 0 2 10 mixedType 0 1 0 0 0 1 -5 -14 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 A 1 0 0 3 20 mixedType 0 1 0 0 0 2 -4 -13 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -3 -12 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -2 -11 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 A 1 0 0 6 0 generalization 0 0 1 0 0 5 -1 -10 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 B 0 1 0 7 60 mixedType 0 1 0 1 0 6 0 -9 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 B 0 1 0 8 80 mixedType 0 1 0 1 0 7 1 -8 1 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 B 0 1 0 9 60 mixedType 0 1 0 1 0 8 2 -7 2 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 B 0 1 0 10 80 mixedType 0 1 0 1 0 9 3 -6 3 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 B 0 1 0 11 80 mixedType 0 1 0 1 0 10 4 -5 4 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 M 0 0 1 16 90 mixedType 0 1 0 1 1 15 9 0 9 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 M 0 0 1 22 80 generalization 0 0 1 1 1 21 15 6 15 6
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 4 M 0 0 1 23 80 mixedType 0 1 0 1 1 22 16 7 16 7
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 A 1 0 0 4 0 mixedType 0 1 0 0 0 0 -7 -18 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 A 1 0 0 5 0 mixedType 0 1 0 0 0 1 -6 -17 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 A 1 0 0 6 0 mixedType 0 1 0 0 0 2 -5 -16 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 A 1 0 0 7 0 mixedType 0 1 0 0 0 3 -4 -15 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 A 1 0 0 8 0 mixedType 0 1 0 0 0 4 -3 -14 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 A 1 0 0 9 0 generalization 0 0 1 0 0 5 -2 -13 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 A 1 0 0 10 0 mixedType 0 1 0 0 0 6 -1 -12 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 B 0 1 0 11 70 mixedType 0 1 0 1 0 7 0 -11 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 B 0 1 0 12 80 mixedType 0 1 0 1 0 8 1 -10 1 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 B 0 1 0 13 80 mixedType 0 1 0 1 0 9 2 -9 2 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 B 0 1 0 14 90 mixedType 0 1 0 1 0 10 3 -8 3 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 B 0 1 0 15 90 mixedType 0 1 0 1 0 11 4 -7 4 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 M 0 0 1 22 80 generalization 0 0 1 1 1 18 11 0 11 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 M 0 0 1 24 100 mixedType 0 1 0 1 1 20 13 2 13 2
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 5 M 0 0 1 26 90 mixedType 0 1 0 1 1 22 15 4 15 4
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 A 1 0 0 4 0 mixedType 0 1 0 0 0 0 -12 -18 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 A 1 0 0 5 0 mixedType 0 1 0 0 0 1 -11 -17 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 A 1 0 0 6 0 mixedType 0 1 0 0 0 2 -10 -16 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 A 1 0 0 7 0 mixedType 0 1 0 0 0 3 -9 -15 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 A 1 0 0 8 0 mixedType 0 1 0 0 0 4 -8 -14 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 A 1 0 0 9 0 generalization 0 0 1 0 0 5 -7 -13 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 A 1 0 0 10 0 mixedType 0 1 0 0 0 6 -6 -12 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 A 1 0 0 15 0 mixedType 0 1 0 0 0 11 -1 -7 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 B 0 1 0 16 70 mixedType 0 1 0 1 0 12 0 -6 0 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 B 0 1 0 17 80 mixedType 0 1 0 1 0 13 1 -5 1 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 B 0 1 0 18 100 mixedType 0 1 0 1 0 14 2 -4 2 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 B 0 1 0 19 70 mixedType 0 1 0 1 0 15 3 -3 3 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 B 0 1 0 20 90 mixedType 0 1 0 1 0 16 4 -2 4 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 M 0 0 1 22 70 generalization 0 0 1 1 1 18 6 0 6 0
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 M 0 0 1 23 80 mixedType 0 1 0 1 1 19 7 1 7 1
Freeman-Green et al. (2015) 4 multiProbe 0 1 2 6 M 0 0 1 24 70 mixedType 0 1 0 1 1 20 8 2 8 2
Jitendra et al. (1999) 5 multiProbe 0 1 1 1 A 1 0 0 1 59 mixedType 0 1 0 0 0 0 -5 -14 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 1 A 1 0 0 2 68 mixedType 0 1 0 0 0 1 -4 -13 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 1 A 1 0 0 3 92 mixedType 0 1 0 0 0 2 -3 -12 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 1 B 0 1 0 6 82 mixedType 0 1 0 1 0 5 0 -9 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 1 B 0 1 0 7 82 mixedType 0 1 0 1 0 6 1 -8 1 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 1 B 0 1 0 8 98 mixedType 0 1 0 1 0 7 2 -7 2 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 1 B 0 1 0 11 81 mixedType 0 1 0 1 0 10 5 -4 5 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 1 B 0 1 0 12 90 mixedType 0 1 0 1 0 11 6 -3 6 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 1 M 0 0 1 15 100 mixedType 0 1 0 1 1 14 9 0 9 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 1 M 0 0 1 16 98 mixedType 0 1 0 1 1 15 10 1 10 1
Jitendra et al. (1999) 5 multiProbe 0 1 1 2 A 1 0 0 1 43 mixedType 0 1 0 0 0 0 -8 -17 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 2 A 1 0 0 4 67 mixedType 0 1 0 0 0 3 -5 -14 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 2 A 1 0 0 6 49 mixedType 0 1 0 0 0 5 -3 -12 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 2 B 0 1 0 9 83 mixedType 0 1 0 1 0 8 0 -9 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 2 B 0 1 0 10 67 mixedType 0 1 0 1 0 9 1 -8 1 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 2 B 0 1 0 11 50 mixedType 0 1 0 1 0 10 2 -7 2 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 2 B 0 1 0 14 84 mixedType 0 1 0 1 0 13 5 -4 5 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 2 B 0 1 0 15 65 mixedType 0 1 0 1 0 14 6 -3 6 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 2 M 0 0 1 18 70 mixedType 0 1 0 1 1 17 9 0 9 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 2 M 0 0 1 19 84 mixedType 0 1 0 1 1 18 10 1 10 1
Jitendra et al. (1999) 5 multiProbe 0 1 1 3 A 1 0 0 1 48 mixedType 0 1 0 0 0 0 -11 -21 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 3 A 1 0 0 3 65 mixedType 0 1 0 0 0 2 -9 -19 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 3 A 1 0 0 6 33 mixedType 0 1 0 0 0 5 -6 -16 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 3 A 1 0 0 9 49 mixedType 0 1 0 0 0 8 -3 -13 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 3 B 0 1 0 12 48 mixedType 0 1 0 1 0 11 0 -10 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 3 B 0 1 0 13 83 mixedType 0 1 0 1 0 12 1 -9 1 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 3 B 0 1 0 14 59 mixedType 0 1 0 1 0 13 2 -8 2 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 3 B 0 1 0 15 57 mixedType 0 1 0 1 0 14 3 -7 3 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 3 B 0 1 0 18 66 mixedType 0 1 0 1 0 17 6 -4 6 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 3 B 0 1 0 19 94 mixedType 0 1 0 1 0 18 7 -3 7 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 3 M 0 0 1 22 66 mixedType 0 1 0 1 1 21 10 0 10 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 3 M 0 0 1 23 100 mixedType 0 1 0 1 1 22 11 1 11 1
Jitendra et al. (1999) 5 multiProbe 0 1 1 4 A 1 0 0 1 50 mixedType 0 1 0 0 0 0 -14 -23 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 4 A 1 0 0 6 57 mixedType 0 1 0 0 0 5 -9 -18 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 4 A 1 0 0 12 32 mixedType 0 1 0 0 0 11 -3 -12 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 4 B 0 1 0 15 85 mixedType 0 1 0 1 0 14 0 -9 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 4 B 0 1 0 16 49 mixedType 0 1 0 1 0 15 1 -8 1 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 4 B 0 1 0 17 83 mixedType 0 1 0 1 0 16 2 -7 2 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 4 B 0 1 0 20 100 mixedType 0 1 0 1 0 19 5 -4 5 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 4 B 0 1 0 21 91 mixedType 0 1 0 1 0 20 6 -3 6 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 4 M 0 0 1 24 100 mixedType 0 1 0 1 1 23 9 0 9 0
Jitendra et al. (1999) 5 multiProbe 0 1 1 4 M 0 0 1 25 60 mixedType 0 1 0 1 1 24 10 1 10 1
Jitendra et al. (1999) 5 multiProbe 0 1 2 1 A 1 0 0 1 51 mixedType 0 1 0 0 0 0 -5 -14 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 1 A 1 0 0 2 36 mixedType 0 1 0 0 0 1 -4 -13 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 1 A 1 0 0 3 24 mixedType 0 1 0 0 0 2 -3 -12 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 1 B 0 1 0 6 48 generalization 0 0 1 1 0 5 0 -9 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 1 B 0 1 0 7 61 generalization 0 0 1 1 0 6 1 -8 1 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 1 B 0 1 0 8 99 generalization 0 0 1 1 0 7 2 -7 2 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 1 B 0 1 0 11 68 mixedType 0 1 0 1 0 10 5 -4 5 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 1 B 0 1 0 12 98 mixedType 0 1 0 1 0 11 6 -3 6 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 1 M 0 0 1 15 80 mixedType 0 1 0 1 1 14 9 0 9 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 1 M 0 0 1 16 98 mixedType 0 1 0 1 1 15 10 1 10 1
Jitendra et al. (1999) 5 multiProbe 0 1 2 2 A 1 0 0 1 37 mixedType 0 1 0 0 0 0 -8 -17 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 2 A 1 0 0 4 13 mixedType 0 1 0 0 0 3 -5 -14 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 2 A 1 0 0 6 24 mixedType 0 1 0 0 0 5 -3 -12 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 2 B 0 1 0 9 48 generalization 0 0 1 1 0 8 0 -9 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 2 B 0 1 0 10 82 generalization 0 0 1 1 0 9 1 -8 1 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 2 B 0 1 0 11 87 generalization 0 0 1 1 0 10 2 -7 2 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 2 B 0 1 0 14 87 mixedType 0 1 0 1 0 13 5 -4 5 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 2 B 0 1 0 15 87 mixedType 0 1 0 1 0 14 6 -3 6 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 2 M 0 0 1 18 60 mixedType 0 1 0 1 1 17 9 0 9 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 2 M 0 0 1 19 90 mixedType 0 1 0 1 1 18 10 1 10 1
Jitendra et al. (1999) 5 multiProbe 0 1 2 3 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -11 -21 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 3 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -9 -19 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 3 A 1 0 0 6 12 mixedType 0 1 0 0 0 5 -6 -16 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 3 A 1 0 0 9 0 mixedType 0 1 0 0 0 8 -3 -13 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 3 B 0 1 0 12 1 generalization 0 0 1 1 0 11 0 -10 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 3 B 0 1 0 13 1 generalization 0 0 1 1 0 12 1 -9 1 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 3 B 0 1 0 14 25 generalization 0 0 1 1 0 13 2 -8 2 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 3 B 0 1 0 15 0 generalization 0 0 1 1 0 14 3 -7 3 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 3 B 0 1 0 18 87 mixedType 0 1 0 1 0 17 6 -4 6 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 3 B 0 1 0 19 100 mixedType 0 1 0 1 0 18 7 -3 7 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 3 M 0 0 1 22 60 mixedType 0 1 0 1 1 21 10 0 10 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 3 M 0 0 1 23 60 mixedType 0 1 0 1 1 22 11 1 11 1
Jitendra et al. (1999) 5 multiProbe 0 1 2 4 A 1 0 0 1 1 mixedType 0 1 0 0 0 0 -14 -23 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 4 A 1 0 0 6 1 mixedType 0 1 0 0 0 5 -9 -18 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 4 A 1 0 0 12 1 mixedType 0 1 0 0 0 11 -3 -12 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 4 B 0 1 0 15 24 generalization 0 0 1 1 0 14 0 -9 0 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 4 B 0 1 0 16 19 generalization 0 0 1 1 0 15 1 -8 1 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 4 B 0 1 0 17 36 generalization 0 0 1 1 0 16 2 -7 2 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 4 B 0 1 0 20 74 mixedType 0 1 0 1 0 19 5 -4 5 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 4 B 0 1 0 21 80 mixedType 0 1 0 1 0 20 6 -3 6 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 4 M 0 0 1 24 74 mixedType 0 1 0 1 1 23 9 0 9 0
Jitendra et al. (1999) 5 multiProbe 0 1 2 4 M 0 0 1 25 99 mixedType 0 1 0 1 1 24 10 1 10 1
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 A 1 0 0 1 33 mixedType 0 1 0 0 0 0 -4 -30 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 A 1 0 0 2 50 mixedType 0 1 0 0 0 1 -3 -29 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 A 1 0 0 3 50 mixedType 0 1 0 0 0 2 -2 -28 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 B 0 1 0 5 100 singleType 1 0 0 1 0 4 0 -26 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 B 0 1 0 6 100 singleType 1 0 0 1 0 5 1 -25 1 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 B 0 1 0 7 100 singleType 1 0 0 1 0 6 2 -24 2 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 B 0 1 0 9 67 mixedType 0 1 0 1 0 8 4 -22 4 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 B 0 1 0 10 50 mixedType 0 1 0 1 0 9 5 -21 5 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 B 0 1 0 12 100 singleType 1 0 0 1 0 11 7 -19 7 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 B 0 1 0 13 100 singleType 1 0 0 1 0 12 8 -18 8 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 B 0 1 0 14 100 singleType 1 0 0 1 0 13 9 -17 9 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 B 0 1 0 16 100 mixedType 0 1 0 1 0 15 11 -15 11 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 B 0 1 0 17 100 mixedType 0 1 0 1 0 16 12 -14 12 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 B 0 1 0 18 100 mixedType 0 1 0 1 0 17 13 -13 13 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 M 0 0 1 31 100 mixedType 0 1 0 1 1 30 26 0 26 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 M 0 0 1 43 100 mixedType 0 1 0 1 1 42 38 12 38 12
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 M 0 0 1 46 83 mixedType 0 1 0 1 1 45 41 15 41 15
Jitendra et al. (2002) 6 multiProbe 0 1 1 1 M 0 0 1 49 100 mixedType 0 1 0 1 1 48 44 18 44 18
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 A 1 0 0 1 33 mixedType 0 1 0 0 0 0 -18 -34 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 A 1 0 0 2 50 mixedType 0 1 0 0 0 1 -17 -33 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 A 1 0 0 3 67 mixedType 0 1 0 0 0 2 -16 -32 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 A 1 0 0 4 67 mixedType 0 1 0 0 0 3 -15 -31 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 A 1 0 0 16 67 mixedType 0 1 0 0 0 15 -3 -19 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 A 1 0 0 17 50 mixedType 0 1 0 0 0 16 -2 -18 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 A 1 0 0 18 17 mixedType 0 1 0 0 0 17 -1 -17 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 B 0 1 0 19 100 singleType 1 0 0 1 0 18 0 -16 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 B 0 1 0 20 100 singleType 1 0 0 1 0 19 1 -15 1 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 B 0 1 0 21 100 singleType 1 0 0 1 0 20 2 -14 2 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 B 0 1 0 23 67 mixedType 0 1 0 1 0 22 4 -12 4 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 B 0 1 0 24 50 mixedType 0 1 0 1 0 23 5 -11 5 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 B 0 1 0 26 100 singleType 1 0 0 1 0 25 7 -9 7 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 B 0 1 0 27 100 singleType 1 0 0 1 0 26 8 -8 8 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 B 0 1 0 28 100 singleType 1 0 0 1 0 27 9 -7 9 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 B 0 1 0 30 100 mixedType 0 1 0 1 0 29 11 -5 11 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 B 0 1 0 31 100 mixedType 0 1 0 1 0 30 12 -4 12 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 M 0 0 1 35 100 mixedType 0 1 0 1 1 34 16 0 16 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 M 0 0 1 37 100 mixedType 0 1 0 1 1 36 18 2 18 2
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 M 0 0 1 44 83 mixedType 0 1 0 1 1 43 25 9 25 9
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 M 0 0 1 48 100 mixedType 0 1 0 1 1 47 29 13 29 13
Jitendra et al. (2002) 6 multiProbe 0 1 1 2 M 0 0 1 49 100 mixedType 0 1 0 1 1 48 30 14 30 14
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 A 1 0 0 1 33 mixedType 0 1 0 0 0 0 -31 -46 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 A 1 0 0 2 50 mixedType 0 1 0 0 0 1 -30 -45 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 A 1 0 0 3 50 mixedType 0 1 0 0 0 2 -29 -44 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 A 1 0 0 30 33 mixedType 0 1 0 0 0 29 -2 -17 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 A 1 0 0 31 17 mixedType 0 1 0 0 0 30 -1 -16 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 B 0 1 0 32 100 singleType 1 0 0 1 0 31 0 -15 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 B 0 1 0 33 100 singleType 1 0 0 1 0 32 1 -14 1 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 B 0 1 0 34 100 singleType 1 0 0 1 0 33 2 -13 2 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 B 0 1 0 36 67 mixedType 0 1 0 1 0 35 4 -11 4 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 B 0 1 0 37 50 mixedType 0 1 0 1 0 36 5 -10 5 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 B 0 1 0 39 100 singleType 1 0 0 1 0 38 7 -8 7 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 B 0 1 0 40 100 singleType 1 0 0 1 0 39 8 -7 8 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 B 0 1 0 41 100 singleType 1 0 0 1 0 40 9 -6 9 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 B 0 1 0 43 100 mixedType 0 1 0 1 0 42 11 -4 11 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 B 0 1 0 44 100 mixedType 0 1 0 1 0 43 12 -3 12 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 M 0 0 1 47 100 mixedType 0 1 0 1 1 46 15 0 15 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 3 M 0 0 1 49 100 mixedType 0 1 0 1 1 48 17 2 17 2
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 A 1 0 0 35 33 mixedType 0 1 0 0 0 0 -4 0 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 A 1 0 0 36 33 mixedType 0 1 0 0 0 1 -3 0 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 A 1 0 0 37 50 mixedType 0 1 0 0 0 2 -2 0 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 A 1 0 0 38 0 mixedType 0 1 0 0 0 3 -1 0 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 B 0 1 0 39 100 singleType 1 0 0 1 0 4 0 0 0 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 B 0 1 0 40 100 singleType 1 0 0 1 0 5 1 0 1 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 B 0 1 0 41 100 singleType 1 0 0 1 0 6 2 0 2 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 B 0 1 0 43 67 mixedType 0 1 0 1 0 8 4 0 4 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 B 0 1 0 44 50 mixedType 0 1 0 1 0 9 5 0 5 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 B 0 1 0 46 100 singleType 1 0 0 1 0 11 7 0 7 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 B 0 1 0 47 100 singleType 1 0 0 1 0 12 8 0 8 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 B 0 1 0 48 100 singleType 1 0 0 1 0 13 9 0 9 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 B 0 1 0 50 100 mixedType 0 1 0 1 0 15 11 0 11 0
Jitendra et al. (2002) 6 multiProbe 0 1 1 4 B 0 1 0 51 100 mixedType 0 1 0 1 0 16 12 0 12 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 A 1 0 0 1 20 mixedType 0 1 0 0 0 0 -3 -18 0 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 A 1 0 0 2 10 mixedType 0 1 0 0 0 1 -2 -17 0 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 A 1 0 0 3 30 mixedType 0 1 0 0 0 2 -1 -16 0 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 4 100 singleType 1 0 0 1 0 3 0 -15 0 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 5 87 singleType 1 0 0 1 0 4 1 -14 1 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 6 99 singleType 1 0 0 1 0 5 2 -13 2 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 7 87 mixedType 0 1 0 1 0 6 3 -12 3 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 8 99 mixedType 0 1 0 1 0 7 4 -11 4 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 9 99 mixedType 0 1 0 1 0 8 5 -10 5 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 10 42 mixedType 0 1 0 1 0 9 6 -9 6 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 11 100 singleType 1 0 0 1 0 10 7 -8 7 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 12 86 singleType 1 0 0 1 0 11 8 -7 8 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 13 98 singleType 1 0 0 1 0 12 9 -6 9 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 14 98 mixedType 0 1 0 1 0 13 10 -5 10 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 15 99 mixedType 0 1 0 1 0 14 11 -4 11 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 16 94 mixedType 0 1 0 1 0 15 12 -3 12 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 17 95 mixedType 0 1 0 1 0 16 13 -2 13 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 B 0 1 0 18 79 mixedType 0 1 0 1 0 17 14 -1 14 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 M 0 0 1 19 75 mixedType 0 1 0 1 1 18 15 0 15 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 1 M 0 0 1 20 65 mixedType 0 1 0 1 1 19 16 1 16 1
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 A 1 0 0 1 25 mixedType 0 1 0 0 0 0 -3 -23 0 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 A 1 0 0 2 25 mixedType 0 1 0 0 0 1 -2 -22 0 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 A 1 0 0 3 40 mixedType 0 1 0 0 0 2 -1 -21 0 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 4 100 singleType 1 0 0 1 0 3 0 -20 0 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 5 88 singleType 1 0 0 1 0 4 1 -19 1 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 6 50 singleType 1 0 0 1 0 5 2 -18 2 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 7 100 mixedType 0 1 0 1 0 6 3 -17 3 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 8 100 mixedType 0 1 0 1 0 7 4 -16 4 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 10 44 mixedType 0 1 0 1 0 9 6 -14 6 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 16 100 singleType 1 0 0 1 0 15 12 -8 12 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 17 100 singleType 1 0 0 1 0 16 13 -7 13 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 18 75 singleType 1 0 0 1 0 17 14 -6 14 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 19 100 mixedType 0 1 0 1 0 18 15 -5 15 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 20 100 mixedType 0 1 0 1 0 19 16 -4 16 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 21 89 mixedType 0 1 0 1 0 20 17 -3 17 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 22 56 mixedType 0 1 0 1 0 21 18 -2 18 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 B 0 1 0 23 94 mixedType 0 1 0 1 0 22 19 -1 19 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 M 0 0 1 24 80 mixedType 0 1 0 1 1 23 20 0 20 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 2 M 0 0 1 25 95 mixedType 0 1 0 1 1 24 21 1 21 1
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 A 1 0 0 1 35 mixedType 0 1 0 0 0 0 -3 -28 0 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 A 1 0 0 2 20 mixedType 0 1 0 0 0 1 -2 -27 0 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 A 1 0 0 3 28 mixedType 0 1 0 0 0 2 -1 -26 0 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 4 100 singleType 1 0 0 1 0 3 0 -25 0 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 5 100 singleType 1 0 0 1 0 4 1 -24 1 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 6 67 singleType 1 0 0 1 0 5 2 -23 2 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 7 100 mixedType 0 1 0 1 0 6 3 -22 3 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 8 100 mixedType 0 1 0 1 0 7 4 -21 4 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 10 38 mixedType 0 1 0 1 0 9 6 -19 6 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 21 89 singleType 1 0 0 1 0 20 17 -8 17 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 22 86 singleType 1 0 0 1 0 21 18 -7 18 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 23 99 singleType 1 0 0 1 0 22 19 -6 19 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 24 99 mixedType 0 1 0 1 0 23 20 -5 20 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 25 100 mixedType 0 1 0 1 0 24 21 -4 21 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 26 87 mixedType 0 1 0 1 0 25 22 -3 22 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 27 87 mixedType 0 1 0 1 0 26 23 -2 23 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 B 0 1 0 28 94 mixedType 0 1 0 1 0 27 24 -1 24 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 M 0 0 1 29 75 mixedType 0 1 0 1 1 28 25 0 25 0
Jitendra & Hoff (1996) 7 multiProbe 0 1 1 3 M 0 0 1 30 87 mixedType 0 1 0 1 1 29 26 1 26 1
Liu & Xin (2017) 8 multiBase 1 0 1 1 A 1 0 0 1 33 mixedType 0 1 0 0 0 0 -5 -17 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 A 1 0 0 2 25 mixedType 0 1 0 0 0 1 -4 -16 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 A 1 0 0 3 42 mixedType 0 1 0 0 0 2 -3 -15 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 A 1 0 0 4 17 mixedType 0 1 0 0 0 3 -2 -14 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -1 -13 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 B 0 1 0 6 58 mixedType 0 1 0 1 0 5 0 -12 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 B 0 1 0 7 42 mixedType 0 1 0 1 0 6 1 -11 1 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 B 0 1 0 8 50 mixedType 0 1 0 1 0 7 2 -10 2 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 B 0 1 0 9 58 mixedType 0 1 0 1 0 8 3 -9 3 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 B 0 1 0 10 67 mixedType 0 1 0 1 0 9 4 -8 4 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 B 0 1 0 11 75 mixedType 0 1 0 1 0 10 5 -7 5 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 B 0 1 0 12 75 mixedType 0 1 0 1 0 11 6 -6 6 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 B 0 1 0 13 83 mixedType 0 1 0 1 0 12 7 -5 7 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 B 0 1 0 14 83 mixedType 0 1 0 1 0 13 8 -4 8 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 B 0 1 0 15 50 mixedType 0 1 0 1 0 14 9 -3 9 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 M 0 0 1 18 67 mixedType 0 1 0 1 1 17 12 0 12 0
Liu & Xin (2017) 8 multiBase 1 0 1 1 M 0 0 1 19 50 mixedType 0 1 0 1 1 18 13 1 13 1
Liu & Xin (2017) 8 multiBase 1 0 1 1 M 0 0 1 20 83 mixedType 0 1 0 1 1 19 14 2 14 2
Liu & Xin (2017) 8 multiBase 1 0 1 2 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -6 -18 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -4 -16 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -3 -15 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 A 1 0 0 5 8 mixedType 0 1 0 0 0 4 -2 -14 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 A 1 0 0 6 0 mixedType 0 1 0 0 0 5 -1 -13 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 B 0 1 0 7 42 mixedType 0 1 0 1 0 6 0 -12 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 B 0 1 0 8 33 mixedType 0 1 0 1 0 7 1 -11 1 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 B 0 1 0 9 67 mixedType 0 1 0 1 0 8 2 -10 2 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 B 0 1 0 10 58 mixedType 0 1 0 1 0 9 3 -9 3 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 B 0 1 0 11 75 mixedType 0 1 0 1 0 10 4 -8 4 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 B 0 1 0 12 75 mixedType 0 1 0 1 0 11 5 -7 5 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 B 0 1 0 13 83 mixedType 0 1 0 1 0 12 6 -6 6 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 B 0 1 0 14 75 mixedType 0 1 0 1 0 13 7 -5 7 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 B 0 1 0 15 75 mixedType 0 1 0 1 0 14 8 -4 8 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 B 0 1 0 16 58 mixedType 0 1 0 1 0 15 9 -3 9 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 B 0 1 0 17 67 mixedType 0 1 0 1 0 16 10 -2 10 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 M 0 0 1 19 50 mixedType 0 1 0 1 1 18 12 0 12 0
Liu & Xin (2017) 8 multiBase 1 0 1 2 M 0 0 1 20 75 mixedType 0 1 0 1 1 19 13 1 13 1
Liu & Xin (2017) 8 multiBase 1 0 1 2 M 0 0 1 21 83 mixedType 0 1 0 1 1 20 14 2 14 2
Liu & Xin (2017) 8 multiBase 1 0 1 3 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -7 -26 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -5 -24 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -3 -22 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 A 1 0 0 6 0 mixedType 0 1 0 0 0 5 -2 -21 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 A 1 0 0 7 0 mixedType 0 1 0 0 0 6 -1 -20 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 8 25 mixedType 0 1 0 1 0 7 0 -19 0 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 9 33 mixedType 0 1 0 1 0 8 1 -18 1 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 10 8 mixedType 0 1 0 1 0 9 2 -17 2 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 11 42 mixedType 0 1 0 1 0 10 3 -16 3 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 12 42 mixedType 0 1 0 1 0 11 4 -15 4 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 13 42 mixedType 0 1 0 1 0 12 5 -14 5 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 14 42 mixedType 0 1 0 1 0 13 6 -13 6 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 15 75 mixedType 0 1 0 1 0 14 7 -12 7 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 16 83 mixedType 0 1 0 1 0 15 8 -11 8 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 17 100 mixedType 0 1 0 1 0 16 9 -10 9 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 18 75 mixedType 0 1 0 1 0 17 10 -9 10 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 19 75 mixedType 0 1 0 1 0 18 11 -8 11 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 20 83 mixedType 0 1 0 1 0 19 12 -7 12 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 21 83 mixedType 0 1 0 1 0 20 13 -6 13 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 22 83 mixedType 0 1 0 1 0 21 14 -5 14 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 23 75 mixedType 0 1 0 1 0 22 15 -4 15 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 B 0 1 0 24 83 mixedType 0 1 0 1 0 23 16 -3 16 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 M 0 0 1 27 83 mixedType 0 1 0 1 1 26 19 0 19 0
Liu & Xin (2017) 8 multiBase 1 0 1 3 M 0 0 1 28 50 mixedType 0 1 0 1 1 27 20 1 20 1
Liu & Xin (2017) 8 multiBase 1 0 1 3 M 0 0 1 29 58 mixedType 0 1 0 1 1 28 21 2 21 2
Liu & Xin (2017) 8 multiBase 1 0 2 1 A 1 0 0 1 50 mixedType 0 1 0 0 0 0 -5 -17 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 A 1 0 0 2 42 mixedType 0 1 0 0 0 1 -4 -16 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 A 1 0 0 3 67 mixedType 0 1 0 0 0 2 -3 -15 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 A 1 0 0 4 25 mixedType 0 1 0 0 0 3 -2 -14 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 A 1 0 0 5 33 mixedType 0 1 0 0 0 4 -1 -13 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 B 0 1 0 6 100 mixedType 0 1 0 1 0 5 0 -12 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 B 0 1 0 7 67 mixedType 0 1 0 1 0 6 1 -11 1 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 B 0 1 0 8 83 mixedType 0 1 0 1 0 7 2 -10 2 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 B 0 1 0 9 75 mixedType 0 1 0 1 0 8 3 -9 3 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 B 0 1 0 10 75 mixedType 0 1 0 1 0 9 4 -8 4 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 B 0 1 0 11 100 mixedType 0 1 0 1 0 10 5 -7 5 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 B 0 1 0 12 100 mixedType 0 1 0 1 0 11 6 -6 6 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 B 0 1 0 13 100 mixedType 0 1 0 1 0 12 7 -5 7 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 B 0 1 0 14 100 mixedType 0 1 0 1 0 13 8 -4 8 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 B 0 1 0 15 100 mixedType 0 1 0 1 0 14 9 -3 9 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 M 0 0 1 18 100 mixedType 0 1 0 1 1 17 12 0 12 0
Liu & Xin (2017) 8 multiBase 1 0 2 1 M 0 0 1 19 100 mixedType 0 1 0 1 1 18 13 1 13 1
Liu & Xin (2017) 8 multiBase 1 0 2 1 M 0 0 1 20 100 mixedType 0 1 0 1 1 19 14 2 14 2
Liu & Xin (2017) 8 multiBase 1 0 2 2 A 1 0 0 3 50 mixedType 0 1 0 0 0 0 -4 -16 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 A 1 0 0 4 25 mixedType 0 1 0 0 0 1 -3 -15 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 A 1 0 0 5 33 mixedType 0 1 0 0 0 2 -2 -14 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 A 1 0 0 6 33 mixedType 0 1 0 0 0 3 -1 -13 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 B 0 1 0 7 83 mixedType 0 1 0 1 0 4 0 -12 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 B 0 1 0 8 67 mixedType 0 1 0 1 0 5 1 -11 1 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 B 0 1 0 9 100 mixedType 0 1 0 1 0 6 2 -10 2 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 B 0 1 0 10 100 mixedType 0 1 0 1 0 7 3 -9 3 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 B 0 1 0 11 100 mixedType 0 1 0 1 0 8 4 -8 4 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 B 0 1 0 12 92 mixedType 0 1 0 1 0 9 5 -7 5 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 B 0 1 0 13 100 mixedType 0 1 0 1 0 10 6 -6 6 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 B 0 1 0 14 100 mixedType 0 1 0 1 0 11 7 -5 7 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 B 0 1 0 15 100 mixedType 0 1 0 1 0 12 8 -4 8 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 B 0 1 0 16 83 mixedType 0 1 0 1 0 13 9 -3 9 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 B 0 1 0 17 100 mixedType 0 1 0 1 0 14 10 -2 10 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 M 0 0 1 19 100 mixedType 0 1 0 1 1 16 12 0 12 0
Liu & Xin (2017) 8 multiBase 1 0 2 2 M 0 0 1 20 100 mixedType 0 1 0 1 1 17 13 1 13 1
Liu & Xin (2017) 8 multiBase 1 0 2 2 M 0 0 1 21 100 mixedType 0 1 0 1 1 18 14 2 14 2
Liu & Xin (2017) 8 multiBase 1 0 2 3 A 1 0 0 5 8 mixedType 0 1 0 0 0 0 -3 -22 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 A 1 0 0 6 0 mixedType 0 1 0 0 0 1 -2 -21 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 A 1 0 0 7 0 mixedType 0 1 0 0 0 2 -1 -20 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 8 33 mixedType 0 1 0 1 0 3 0 -19 0 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 9 67 mixedType 0 1 0 1 0 4 1 -18 1 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 10 67 mixedType 0 1 0 1 0 5 2 -17 2 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 11 83 mixedType 0 1 0 1 0 6 3 -16 3 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 12 100 mixedType 0 1 0 1 0 7 4 -15 4 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 13 100 mixedType 0 1 0 1 0 8 5 -14 5 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 14 67 mixedType 0 1 0 1 0 9 6 -13 6 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 15 100 mixedType 0 1 0 1 0 10 7 -12 7 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 16 100 mixedType 0 1 0 1 0 11 8 -11 8 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 17 100 mixedType 0 1 0 1 0 12 9 -10 9 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 18 100 mixedType 0 1 0 1 0 13 10 -9 10 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 19 100 mixedType 0 1 0 1 0 14 11 -8 11 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 20 83 mixedType 0 1 0 1 0 15 12 -7 12 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 21 100 mixedType 0 1 0 1 0 16 13 -6 13 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 22 100 mixedType 0 1 0 1 0 17 14 -5 14 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 23 100 mixedType 0 1 0 1 0 18 15 -4 15 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 B 0 1 0 24 100 mixedType 0 1 0 1 0 19 16 -3 16 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 M 0 0 1 27 100 mixedType 0 1 0 1 1 22 19 0 19 0
Liu & Xin (2017) 8 multiBase 1 0 2 3 M 0 0 1 28 100 mixedType 0 1 0 1 1 23 20 1 20 1
Liu & Xin (2017) 8 multiBase 1 0 2 3 M 0 0 1 29 100 mixedType 0 1 0 1 1 24 21 2 21 2
Maccini & Hughes (2000) 9 multiProbe 0 1 1 1 A 1 0 0 1 3 singleType 1 0 0 0 0 0 -14 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 1 A 1 0 0 4 3 singleType 1 0 0 0 0 3 -11 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 1 A 1 0 0 7 61 singleType 1 0 0 0 0 6 -8 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 1 A 1 0 0 11 3 singleType 1 0 0 0 0 10 -4 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 1 B 0 1 0 15 99 singleType 1 0 0 1 0 14 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 1 B 0 1 0 23 98 singleType 1 0 0 1 0 22 8 0 8 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 1 B 0 1 0 26 89 singleType 1 0 0 1 0 25 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 1 B 0 1 0 33 100 singleType 1 0 0 1 0 32 18 0 18 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 1 B 0 1 0 38 100 singleType 1 0 0 1 0 37 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 1 B 0 1 0 46 91 singleType 1 0 0 1 0 45 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 1 B 0 1 0 54 83 generalization 0 0 1 1 0 53 39 0 39 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 1 B 0 1 0 62 50 generalization 0 0 1 1 0 61 47 0 47 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 A 1 0 0 1 73 singleType 1 0 0 0 0 0 -39 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 A 1 0 0 4 73 singleType 1 0 0 0 0 3 -36 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 A 1 0 0 7 14 singleType 1 0 0 0 0 6 -33 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 A 1 0 0 9 100 singleType 1 0 0 0 0 8 -31 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 A 1 0 0 14 49 singleType 1 0 0 0 0 13 -26 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 B 0 1 0 40 91 singleType 1 0 0 1 0 39 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 B 0 1 0 53 100 singleType 1 0 0 1 0 52 13 0 13 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 B 0 1 0 57 82 singleType 1 0 0 1 0 56 17 0 17 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 B 0 1 0 64 83 singleType 1 0 0 1 0 63 24 0 24 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 B 0 1 0 67 91 singleType 1 0 0 1 0 66 27 0 27 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 B 0 1 0 73 100 singleType 1 0 0 1 0 72 33 0 33 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 B 0 1 0 80 61 generalization 0 0 1 1 0 79 40 0 40 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 2 B 0 1 0 87 39 generalization 0 0 1 1 0 86 47 0 47 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 A 1 0 0 1 50 singleType 1 0 0 0 0 0 -86 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 A 1 0 0 4 75 singleType 1 0 0 0 0 3 -83 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 A 1 0 0 8 18 singleType 1 0 0 0 0 7 -79 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 A 1 0 0 13 18 singleType 1 0 0 0 0 12 -74 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 A 1 0 0 17 20 singleType 1 0 0 0 0 16 -70 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 B 0 1 0 87 98 singleType 1 0 0 1 0 86 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 B 0 1 0 98 98 singleType 1 0 0 1 0 97 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 B 0 1 0 102 90 singleType 1 0 0 1 0 101 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 B 0 1 0 109 82 singleType 1 0 0 1 0 108 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 B 0 1 0 113 81 singleType 1 0 0 1 0 112 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 B 0 1 0 119 100 singleType 1 0 0 1 0 118 32 0 32 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 B 0 1 0 123 60 generalization 0 0 1 1 0 122 36 0 36 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 3 B 0 1 0 129 65 generalization 0 0 1 1 0 128 42 0 42 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 4 A 1 0 0 1 11 singleType 1 0 0 0 0 0 -14 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 4 A 1 0 0 5 20 singleType 1 0 0 0 0 4 -10 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 4 A 1 0 0 9 36 singleType 1 0 0 0 0 8 -6 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 4 A 1 0 0 12 21 singleType 1 0 0 0 0 11 -3 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 4 B 0 1 0 15 82 singleType 1 0 0 1 0 14 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 4 B 0 1 0 22 100 singleType 1 0 0 1 0 21 7 0 7 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 4 B 0 1 0 26 99 singleType 1 0 0 1 0 25 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 4 B 0 1 0 34 99 singleType 1 0 0 1 0 33 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 4 B 0 1 0 37 98 singleType 1 0 0 1 0 36 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 4 B 0 1 0 46 98 singleType 1 0 0 1 0 45 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 4 B 0 1 0 53 47 generalization 0 0 1 1 0 52 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 4 B 0 1 0 61 21 generalization 0 0 1 1 0 60 46 0 46 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 A 1 0 0 1 51 singleType 1 0 0 0 0 0 -41 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 A 1 0 0 4 4 singleType 1 0 0 0 0 3 -38 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 A 1 0 0 7 4 singleType 1 0 0 0 0 6 -35 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 A 1 0 0 10 3 singleType 1 0 0 0 0 9 -32 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 A 1 0 0 14 3 singleType 1 0 0 0 0 13 -28 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 B 0 1 0 42 91 singleType 1 0 0 1 0 41 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 B 0 1 0 53 82 singleType 1 0 0 1 0 52 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 B 0 1 0 57 100 singleType 1 0 0 1 0 56 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 B 0 1 0 64 100 singleType 1 0 0 1 0 63 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 B 0 1 0 68 91 singleType 1 0 0 1 0 67 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 B 0 1 0 75 100 singleType 1 0 0 1 0 74 33 0 33 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 B 0 1 0 81 70 generalization 0 0 1 1 0 80 39 0 39 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 5 B 0 1 0 88 50 generalization 0 0 1 1 0 87 46 0 46 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 A 1 0 0 1 29 singleType 1 0 0 0 0 0 -86 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 A 1 0 0 4 49 singleType 1 0 0 0 0 3 -83 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 A 1 0 0 7 56 singleType 1 0 0 0 0 6 -80 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 A 1 0 0 13 57 singleType 1 0 0 0 0 12 -74 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 A 1 0 0 19 57 singleType 1 0 0 0 0 18 -68 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 B 0 1 0 87 92 singleType 1 0 0 1 0 86 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 B 0 1 0 98 99 singleType 1 0 0 1 0 97 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 B 0 1 0 103 83 singleType 1 0 0 1 0 102 16 0 16 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 B 0 1 0 109 88 singleType 1 0 0 1 0 108 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 B 0 1 0 112 100 singleType 1 0 0 1 0 111 25 0 25 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 B 0 1 0 119 100 singleType 1 0 0 1 0 118 32 0 32 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 B 0 1 0 124 82 generalization 0 0 1 1 0 123 37 0 37 0
Maccini & Hughes (2000) 9 multiProbe 0 1 1 6 B 0 1 0 129 95 generalization 0 0 1 1 0 128 42 0 42 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 1 A 1 0 0 1 31 singleType 1 0 0 0 0 0 -14 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 1 A 1 0 0 4 54 singleType 1 0 0 0 0 3 -11 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 1 A 1 0 0 7 56 singleType 1 0 0 0 0 6 -8 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 1 A 1 0 0 11 57 singleType 1 0 0 0 0 10 -4 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 1 B 0 1 0 15 96 singleType 1 0 0 1 0 14 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 1 B 0 1 0 23 97 singleType 1 0 0 1 0 22 8 0 8 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 1 B 0 1 0 26 97 singleType 1 0 0 1 0 25 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 1 B 0 1 0 33 96 singleType 1 0 0 1 0 32 18 0 18 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 1 B 0 1 0 38 95 singleType 1 0 0 1 0 37 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 1 B 0 1 0 46 87 singleType 1 0 0 1 0 45 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 1 B 0 1 0 54 89 generalization 0 0 1 1 0 53 39 0 39 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 1 B 0 1 0 62 56 generalization 0 0 1 1 0 61 47 0 47 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 A 1 0 0 1 65 singleType 1 0 0 0 0 0 -39 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 A 1 0 0 4 66 singleType 1 0 0 0 0 3 -36 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 A 1 0 0 7 35 singleType 1 0 0 0 0 6 -33 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 A 1 0 0 9 100 singleType 1 0 0 0 0 8 -31 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 A 1 0 0 14 58 singleType 1 0 0 0 0 13 -26 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 B 0 1 0 40 87 singleType 1 0 0 1 0 39 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 B 0 1 0 53 97 singleType 1 0 0 1 0 52 13 0 13 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 B 0 1 0 57 93 singleType 1 0 0 1 0 56 17 0 17 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 B 0 1 0 64 98 singleType 1 0 0 1 0 63 24 0 24 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 B 0 1 0 67 86 singleType 1 0 0 1 0 66 27 0 27 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 B 0 1 0 73 99 singleType 1 0 0 1 0 72 33 0 33 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 B 0 1 0 80 70 generalization 0 0 1 1 0 79 40 0 40 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 2 B 0 1 0 87 49 generalization 0 0 1 1 0 86 47 0 47 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 A 1 0 0 1 24 singleType 1 0 0 0 0 0 -86 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 A 1 0 0 4 25 singleType 1 0 0 0 0 3 -83 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 A 1 0 0 8 50 singleType 1 0 0 0 0 7 -79 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 A 1 0 0 13 100 singleType 1 0 0 0 0 12 -74 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 A 1 0 0 17 100 singleType 1 0 0 0 0 16 -70 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 B 0 1 0 87 92 singleType 1 0 0 1 0 86 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 B 0 1 0 98 96 singleType 1 0 0 1 0 97 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 B 0 1 0 102 96 singleType 1 0 0 1 0 101 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 B 0 1 0 109 87 singleType 1 0 0 1 0 108 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 B 0 1 0 113 88 singleType 1 0 0 1 0 112 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 B 0 1 0 119 98 singleType 1 0 0 1 0 118 32 0 32 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 B 0 1 0 123 71 generalization 0 0 1 1 0 122 36 0 36 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 3 B 0 1 0 129 62 generalization 0 0 1 1 0 128 42 0 42 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 4 A 1 0 0 1 85 singleType 1 0 0 0 0 0 -14 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 4 A 1 0 0 5 14 singleType 1 0 0 0 0 4 -10 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 4 A 1 0 0 9 27 singleType 1 0 0 0 0 8 -6 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 4 A 1 0 0 12 12 singleType 1 0 0 0 0 11 -3 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 4 B 0 1 0 15 88 singleType 1 0 0 1 0 14 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 4 B 0 1 0 22 93 singleType 1 0 0 1 0 21 7 0 7 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 4 B 0 1 0 26 96 singleType 1 0 0 1 0 25 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 4 B 0 1 0 34 96 singleType 1 0 0 1 0 33 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 4 B 0 1 0 37 92 singleType 1 0 0 1 0 36 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 4 B 0 1 0 46 92 singleType 1 0 0 1 0 45 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 4 B 0 1 0 53 73 generalization 0 0 1 1 0 52 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 4 B 0 1 0 61 40 generalization 0 0 1 1 0 60 46 0 46 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 A 1 0 0 1 57 singleType 1 0 0 0 0 0 -41 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 A 1 0 0 4 56 singleType 1 0 0 0 0 3 -38 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 A 1 0 0 7 68 singleType 1 0 0 0 0 6 -35 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 A 1 0 0 10 52 singleType 1 0 0 0 0 9 -32 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 A 1 0 0 14 62 singleType 1 0 0 0 0 13 -28 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 B 0 1 0 42 87 singleType 1 0 0 1 0 41 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 B 0 1 0 53 87 singleType 1 0 0 1 0 52 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 B 0 1 0 57 99 singleType 1 0 0 1 0 56 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 B 0 1 0 64 98 singleType 1 0 0 1 0 63 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 B 0 1 0 68 95 singleType 1 0 0 1 0 67 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 B 0 1 0 75 100 singleType 1 0 0 1 0 74 33 0 33 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 B 0 1 0 81 77 generalization 0 0 1 1 0 80 39 0 39 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 5 B 0 1 0 88 74 generalization 0 0 1 1 0 87 46 0 46 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 A 1 0 0 1 23 singleType 1 0 0 0 0 0 -86 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 A 1 0 0 4 56 singleType 1 0 0 0 0 3 -83 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 A 1 0 0 7 77 singleType 1 0 0 0 0 6 -80 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 A 1 0 0 13 67 singleType 1 0 0 0 0 12 -74 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 A 1 0 0 19 96 singleType 1 0 0 0 0 18 -68 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 B 0 1 0 87 89 singleType 1 0 0 1 0 86 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 B 0 1 0 98 92 singleType 1 0 0 1 0 97 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 B 0 1 0 103 92 singleType 1 0 0 1 0 102 16 0 16 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 B 0 1 0 109 82 singleType 1 0 0 1 0 108 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 B 0 1 0 112 96 singleType 1 0 0 1 0 111 25 0 25 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 B 0 1 0 119 93 singleType 1 0 0 1 0 118 32 0 32 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 B 0 1 0 124 64 generalization 0 0 1 1 0 123 37 0 37 0
Maccini & Hughes (2000) 9 multiProbe 0 1 2 6 B 0 1 0 129 91 generalization 0 0 1 1 0 128 42 0 42 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 1 A 1 0 0 1 1 singleType 1 0 0 0 0 0 -14 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 1 A 1 0 0 4 1 singleType 1 0 0 0 0 3 -11 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 1 A 1 0 0 7 23 singleType 1 0 0 0 0 6 -8 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 1 A 1 0 0 11 1 singleType 1 0 0 0 0 10 -4 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 1 B 0 1 0 15 100 singleType 1 0 0 1 0 14 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 1 B 0 1 0 23 92 singleType 1 0 0 1 0 22 8 0 8 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 1 B 0 1 0 27 92 singleType 1 0 0 1 0 26 12 0 12 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 1 B 0 1 0 34 99 singleType 1 0 0 1 0 33 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 1 B 0 1 0 38 100 singleType 1 0 0 1 0 37 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 1 B 0 1 0 46 94 singleType 1 0 0 1 0 45 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 1 B 0 1 0 53 65 generalization 0 0 1 1 0 52 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 1 B 0 1 0 62 56 generalization 0 0 1 1 0 61 47 0 47 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 A 1 0 0 1 6 singleType 1 0 0 0 0 0 -41 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 A 1 0 0 4 60 singleType 1 0 0 0 0 3 -38 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 A 1 0 0 8 98 singleType 1 0 0 0 0 7 -34 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 A 1 0 0 12 25 singleType 1 0 0 0 0 11 -30 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 A 1 0 0 14 12 singleType 1 0 0 0 0 13 -28 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 B 0 1 0 42 97 singleType 1 0 0 1 0 41 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 B 0 1 0 54 81 singleType 1 0 0 1 0 53 12 0 12 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 B 0 1 0 58 81 singleType 1 0 0 1 0 57 16 0 16 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 B 0 1 0 65 81 singleType 1 0 0 1 0 64 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 B 0 1 0 68 100 singleType 1 0 0 1 0 67 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 B 0 1 0 75 96 singleType 1 0 0 1 0 74 33 0 33 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 B 0 1 0 80 44 generalization 0 0 1 1 0 79 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 2 B 0 1 0 88 30 generalization 0 0 1 1 0 87 46 0 46 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 A 1 0 0 1 24 singleType 1 0 0 0 0 0 -86 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 A 1 0 0 4 76 singleType 1 0 0 0 0 3 -83 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 A 1 0 0 7 35 singleType 1 0 0 0 0 6 -80 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 A 1 0 0 14 51 singleType 1 0 0 0 0 13 -73 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 A 1 0 0 17 34 singleType 1 0 0 0 0 16 -70 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 B 0 1 0 87 92 singleType 1 0 0 1 0 86 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 B 0 1 0 98 91 singleType 1 0 0 1 0 97 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 B 0 1 0 102 83 singleType 1 0 0 1 0 101 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 B 0 1 0 108 94 singleType 1 0 0 1 0 107 21 0 21 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 B 0 1 0 112 92 singleType 1 0 0 1 0 111 25 0 25 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 B 0 1 0 118 84 singleType 1 0 0 1 0 117 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 B 0 1 0 123 75 generalization 0 0 1 1 0 122 36 0 36 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 3 B 0 1 0 130 54 generalization 0 0 1 1 0 129 43 0 43 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 4 A 1 0 0 2 10 singleType 1 0 0 0 0 0 -13 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 4 A 1 0 0 5 35 singleType 1 0 0 0 0 3 -10 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 4 A 1 0 0 8 36 singleType 1 0 0 0 0 6 -7 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 4 A 1 0 0 12 20 singleType 1 0 0 0 0 10 -3 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 4 B 0 1 0 15 99 singleType 1 0 0 1 0 13 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 4 B 0 1 0 23 90 singleType 1 0 0 1 0 21 8 0 8 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 4 B 0 1 0 26 92 singleType 1 0 0 1 0 24 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 4 B 0 1 0 34 91 singleType 1 0 0 1 0 32 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 4 B 0 1 0 38 99 singleType 1 0 0 1 0 36 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 4 B 0 1 0 46 91 singleType 1 0 0 1 0 44 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 4 B 0 1 0 52 85 generalization 0 0 1 1 0 50 37 0 37 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 4 B 0 1 0 62 63 generalization 0 0 1 1 0 60 47 0 47 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 A 1 0 0 1 26 singleType 1 0 0 0 0 0 -41 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 A 1 0 0 4 2 singleType 1 0 0 0 0 3 -38 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 A 1 0 0 8 2 singleType 1 0 0 0 0 7 -34 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 A 1 0 0 11 2 singleType 1 0 0 0 0 10 -31 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 A 1 0 0 14 2 singleType 1 0 0 0 0 13 -28 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 B 0 1 0 42 100 singleType 1 0 0 1 0 41 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 B 0 1 0 54 92 singleType 1 0 0 1 0 53 12 0 12 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 B 0 1 0 58 100 singleType 1 0 0 1 0 57 16 0 16 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 B 0 1 0 64 100 singleType 1 0 0 1 0 63 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 B 0 1 0 68 94 singleType 1 0 0 1 0 67 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 B 0 1 0 75 94 singleType 1 0 0 1 0 74 33 0 33 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 B 0 1 0 80 75 generalization 0 0 1 1 0 79 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 3 5 B 0 1 0 87 49 generalization 0 0 1 1 0 86 45 0 45 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 1 A 1 0 0 1 56 singleType 1 0 0 0 0 0 -14 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 1 A 1 0 0 4 55 singleType 1 0 0 0 0 3 -11 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 1 A 1 0 0 7 5 singleType 1 0 0 0 0 6 -8 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 1 A 1 0 0 11 52 singleType 1 0 0 0 0 10 -4 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 1 B 0 1 0 15 93 singleType 1 0 0 1 0 14 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 1 B 0 1 0 23 87 singleType 1 0 0 1 0 22 8 0 8 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 1 B 0 1 0 27 95 singleType 1 0 0 1 0 26 12 0 12 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 1 B 0 1 0 34 96 singleType 1 0 0 1 0 33 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 1 B 0 1 0 38 95 singleType 1 0 0 1 0 37 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 1 B 0 1 0 46 88 singleType 1 0 0 1 0 45 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 1 B 0 1 0 53 70 generalization 0 0 1 1 0 52 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 1 B 0 1 0 62 61 generalization 0 0 1 1 0 61 47 0 47 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 A 1 0 0 1 4 singleType 1 0 0 0 0 0 -41 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 A 1 0 0 4 66 singleType 1 0 0 0 0 3 -38 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 A 1 0 0 8 66 singleType 1 0 0 0 0 7 -34 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 A 1 0 0 12 6 singleType 1 0 0 0 0 11 -30 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 A 1 0 0 14 51 singleType 1 0 0 0 0 13 -28 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 B 0 1 0 42 92 singleType 1 0 0 1 0 41 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 B 0 1 0 54 87 singleType 1 0 0 1 0 53 12 0 12 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 B 0 1 0 58 89 singleType 1 0 0 1 0 57 16 0 16 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 B 0 1 0 65 86 singleType 1 0 0 1 0 64 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 B 0 1 0 68 96 singleType 1 0 0 1 0 67 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 B 0 1 0 75 93 singleType 1 0 0 1 0 74 33 0 33 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 B 0 1 0 80 67 generalization 0 0 1 1 0 79 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 2 B 0 1 0 88 44 generalization 0 0 1 1 0 87 46 0 46 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 A 1 0 0 1 57 singleType 1 0 0 0 0 0 -86 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 A 1 0 0 4 35 singleType 1 0 0 0 0 3 -83 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 A 1 0 0 7 31 singleType 1 0 0 0 0 6 -80 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 A 1 0 0 14 66 singleType 1 0 0 0 0 13 -73 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 A 1 0 0 17 53 singleType 1 0 0 0 0 16 -70 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 B 0 1 0 87 87 singleType 1 0 0 1 0 86 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 B 0 1 0 98 96 singleType 1 0 0 1 0 97 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 B 0 1 0 102 77 singleType 1 0 0 1 0 101 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 B 0 1 0 108 84 singleType 1 0 0 1 0 107 21 0 21 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 B 0 1 0 112 88 singleType 1 0 0 1 0 111 25 0 25 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 B 0 1 0 118 89 singleType 1 0 0 1 0 117 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 B 0 1 0 123 96 generalization 0 0 1 1 0 122 36 0 36 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 3 B 0 1 0 130 54 generalization 0 0 1 1 0 129 43 0 43 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 4 A 1 0 0 2 78 singleType 1 0 0 0 0 0 -13 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 4 A 1 0 0 5 25 singleType 1 0 0 0 0 3 -10 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 4 A 1 0 0 8 22 singleType 1 0 0 0 0 6 -7 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 4 A 1 0 0 12 13 singleType 1 0 0 0 0 10 -3 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 4 B 0 1 0 15 95 singleType 1 0 0 1 0 13 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 4 B 0 1 0 23 95 singleType 1 0 0 1 0 21 8 0 8 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 4 B 0 1 0 26 87 singleType 1 0 0 1 0 24 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 4 B 0 1 0 34 89 singleType 1 0 0 1 0 32 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 4 B 0 1 0 38 97 singleType 1 0 0 1 0 36 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 4 B 0 1 0 46 89 singleType 1 0 0 1 0 44 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 4 B 0 1 0 52 82 generalization 0 0 1 1 0 50 37 0 37 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 4 B 0 1 0 62 60 generalization 0 0 1 1 0 60 47 0 47 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 A 1 0 0 1 21 singleType 1 0 0 0 0 0 -41 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 A 1 0 0 4 36 singleType 1 0 0 0 0 3 -38 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 A 1 0 0 8 31 singleType 1 0 0 0 0 7 -34 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 A 1 0 0 11 24 singleType 1 0 0 0 0 10 -31 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 A 1 0 0 14 34 singleType 1 0 0 0 0 13 -28 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 B 0 1 0 42 83 singleType 1 0 0 1 0 41 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 B 0 1 0 54 97 singleType 1 0 0 1 0 53 12 0 12 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 B 0 1 0 58 95 singleType 1 0 0 1 0 57 16 0 16 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 B 0 1 0 64 97 singleType 1 0 0 1 0 63 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 B 0 1 0 68 91 singleType 1 0 0 1 0 67 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 B 0 1 0 75 83 singleType 1 0 0 1 0 74 33 0 33 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 B 0 1 0 80 70 generalization 0 0 1 1 0 79 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 4 5 B 0 1 0 87 56 generalization 0 0 1 1 0 86 45 0 45 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 1 A 1 0 0 1 2 singleType 1 0 0 0 0 0 -13 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 1 A 1 0 0 4 2 singleType 1 0 0 0 0 3 -10 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 1 A 1 0 0 7 2 singleType 1 0 0 0 0 6 -7 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 1 A 1 0 0 11 2 singleType 1 0 0 0 0 10 -3 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 1 B 0 1 0 14 83 singleType 1 0 0 1 0 13 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 1 B 0 1 0 21 87 singleType 1 0 0 1 0 20 7 0 7 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 1 B 0 1 0 24 91 singleType 1 0 0 1 0 23 10 0 10 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 1 B 0 1 0 33 90 singleType 1 0 0 1 0 32 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 1 B 0 1 0 37 86 singleType 1 0 0 1 0 36 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 1 B 0 1 0 46 91 singleType 1 0 0 1 0 45 32 0 32 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 1 B 0 1 0 52 100 generalization 0 0 1 1 0 51 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 1 B 0 1 0 60 82 generalization 0 0 1 1 0 59 46 0 46 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 A 1 0 0 1 4 singleType 1 0 0 0 0 0 -40 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 A 1 0 0 4 11 singleType 1 0 0 0 0 3 -37 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 A 1 0 0 7 26 singleType 1 0 0 0 0 6 -34 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 A 1 0 0 10 6 singleType 1 0 0 0 0 9 -31 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 A 1 0 0 14 26 singleType 1 0 0 0 0 13 -27 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 B 0 1 0 41 89 singleType 1 0 0 1 0 40 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 B 0 1 0 53 100 singleType 1 0 0 1 0 52 12 0 12 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 B 0 1 0 57 100 singleType 1 0 0 1 0 56 16 0 16 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 B 0 1 0 63 100 singleType 1 0 0 1 0 62 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 B 0 1 0 67 100 singleType 1 0 0 1 0 66 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 B 0 1 0 74 83 singleType 1 0 0 1 0 73 33 0 33 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 B 0 1 0 79 95 generalization 0 0 1 1 0 78 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 2 B 0 1 0 86 95 generalization 0 0 1 1 0 85 45 0 45 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 A 1 0 0 2 60 singleType 1 0 0 0 0 0 -85 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 A 1 0 0 6 2 singleType 1 0 0 0 0 4 -81 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 A 1 0 0 10 9 singleType 1 0 0 0 0 8 -77 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 A 1 0 0 14 34 singleType 1 0 0 0 0 12 -73 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 A 1 0 0 17 2 singleType 1 0 0 0 0 15 -70 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 B 0 1 0 87 98 singleType 1 0 0 1 0 85 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 B 0 1 0 99 97 singleType 1 0 0 1 0 97 12 0 12 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 B 0 1 0 103 99 singleType 1 0 0 1 0 101 16 0 16 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 B 0 1 0 109 91 singleType 1 0 0 1 0 107 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 B 0 1 0 113 91 singleType 1 0 0 1 0 111 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 B 0 1 0 119 99 singleType 1 0 0 1 0 117 32 0 32 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 B 0 1 0 123 73 generalization 0 0 1 1 0 121 36 0 36 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 3 B 0 1 0 129 83 generalization 0 0 1 1 0 127 42 0 42 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 4 A 1 0 0 1 20 singleType 1 0 0 0 0 0 -14 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 4 A 1 0 0 4 9 singleType 1 0 0 0 0 3 -11 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 4 A 1 0 0 8 36 singleType 1 0 0 0 0 7 -7 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 4 A 1 0 0 12 19 singleType 1 0 0 0 0 11 -3 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 4 B 0 1 0 15 100 singleType 1 0 0 1 0 14 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 4 B 0 1 0 23 92 singleType 1 0 0 1 0 22 8 0 8 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 4 B 0 1 0 28 94 singleType 1 0 0 1 0 27 13 0 13 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 4 B 0 1 0 34 92 singleType 1 0 0 1 0 33 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 4 B 0 1 0 39 98 singleType 1 0 0 1 0 38 24 0 24 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 4 B 0 1 0 48 93 singleType 1 0 0 1 0 47 33 0 33 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 4 B 0 1 0 53 61 generalization 0 0 1 1 0 52 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 4 B 0 1 0 61 75 generalization 0 0 1 1 0 60 46 0 46 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 A 1 0 0 1 6 singleType 1 0 0 0 0 0 -41 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 A 1 0 0 4 6 singleType 1 0 0 0 0 3 -38 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 A 1 0 0 8 2 singleType 1 0 0 0 0 7 -34 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 A 1 0 0 12 2 singleType 1 0 0 0 0 11 -30 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 A 1 0 0 15 2 singleType 1 0 0 0 0 14 -27 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 B 0 1 0 42 100 singleType 1 0 0 1 0 41 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 B 0 1 0 53 95 singleType 1 0 0 1 0 52 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 B 0 1 0 57 100 singleType 1 0 0 1 0 56 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 B 0 1 0 63 94 singleType 1 0 0 1 0 62 21 0 21 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 B 0 1 0 67 100 singleType 1 0 0 1 0 66 25 0 25 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 B 0 1 0 73 87 singleType 1 0 0 1 0 72 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 B 0 1 0 80 66 generalization 0 0 1 1 0 79 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 5 5 B 0 1 0 86 67 generalization 0 0 1 1 0 85 44 0 44 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 1 A 1 0 0 1 75 singleType 1 0 0 0 0 0 -13 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 1 A 1 0 0 4 99 singleType 1 0 0 0 0 3 -10 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 1 A 1 0 0 7 32 singleType 1 0 0 0 0 6 -7 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 1 A 1 0 0 11 70 singleType 1 0 0 0 0 10 -3 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 1 B 0 1 0 14 89 singleType 1 0 0 1 0 13 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 1 B 0 1 0 21 82 singleType 1 0 0 1 0 20 7 0 7 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 1 B 0 1 0 24 84 singleType 1 0 0 1 0 23 10 0 10 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 1 B 0 1 0 33 87 singleType 1 0 0 1 0 32 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 1 B 0 1 0 37 82 singleType 1 0 0 1 0 36 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 1 B 0 1 0 46 87 singleType 1 0 0 1 0 45 32 0 32 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 1 B 0 1 0 52 95 generalization 0 0 1 1 0 51 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 1 B 0 1 0 60 77 generalization 0 0 1 1 0 59 46 0 46 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 A 1 0 0 1 1 singleType 1 0 0 0 0 0 -40 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 A 1 0 0 4 27 singleType 1 0 0 0 0 3 -37 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 A 1 0 0 7 6 singleType 1 0 0 0 0 6 -34 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 A 1 0 0 10 3 singleType 1 0 0 0 0 9 -31 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 A 1 0 0 14 22 singleType 1 0 0 0 0 13 -27 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 B 0 1 0 41 94 singleType 1 0 0 1 0 40 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 B 0 1 0 53 98 singleType 1 0 0 1 0 52 12 0 12 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 B 0 1 0 57 100 singleType 1 0 0 1 0 56 16 0 16 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 B 0 1 0 63 99 singleType 1 0 0 1 0 62 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 B 0 1 0 67 100 singleType 1 0 0 1 0 66 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 B 0 1 0 74 87 singleType 1 0 0 1 0 73 33 0 33 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 B 0 1 0 79 92 generalization 0 0 1 1 0 78 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 2 B 0 1 0 86 92 generalization 0 0 1 1 0 85 45 0 45 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 A 1 0 0 2 76 singleType 1 0 0 0 0 0 -85 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 A 1 0 0 6 57 singleType 1 0 0 0 0 4 -81 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 A 1 0 0 10 56 singleType 1 0 0 0 0 8 -77 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 A 1 0 0 14 97 singleType 1 0 0 0 0 12 -73 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 A 1 0 0 17 56 singleType 1 0 0 0 0 15 -70 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 B 0 1 0 87 95 singleType 1 0 0 1 0 85 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 B 0 1 0 99 95 singleType 1 0 0 1 0 97 12 0 12 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 B 0 1 0 103 90 singleType 1 0 0 1 0 101 16 0 16 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 B 0 1 0 109 98 singleType 1 0 0 1 0 107 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 B 0 1 0 113 99 singleType 1 0 0 1 0 111 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 B 0 1 0 119 96 singleType 1 0 0 1 0 117 32 0 32 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 B 0 1 0 123 78 generalization 0 0 1 1 0 121 36 0 36 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 3 B 0 1 0 129 99 generalization 0 0 1 1 0 127 42 0 42 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 4 A 1 0 0 1 35 singleType 1 0 0 0 0 0 -14 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 4 A 1 0 0 4 21 singleType 1 0 0 0 0 3 -11 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 4 A 1 0 0 8 25 singleType 1 0 0 0 0 7 -7 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 4 A 1 0 0 12 46 singleType 1 0 0 0 0 11 -3 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 4 B 0 1 0 15 96 singleType 1 0 0 1 0 14 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 4 B 0 1 0 23 90 singleType 1 0 0 1 0 22 8 0 8 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 4 B 0 1 0 28 88 singleType 1 0 0 1 0 27 13 0 13 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 4 B 0 1 0 34 88 singleType 1 0 0 1 0 33 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 4 B 0 1 0 39 95 singleType 1 0 0 1 0 38 24 0 24 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 4 B 0 1 0 48 89 singleType 1 0 0 1 0 47 33 0 33 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 4 B 0 1 0 53 64 generalization 0 0 1 1 0 52 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 4 B 0 1 0 61 71 generalization 0 0 1 1 0 60 46 0 46 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 A 1 0 0 1 3 singleType 1 0 0 0 0 0 -41 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 A 1 0 0 4 3 singleType 1 0 0 0 0 3 -38 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 A 1 0 0 8 31 singleType 1 0 0 0 0 7 -34 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 A 1 0 0 12 49 singleType 1 0 0 0 0 11 -30 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 A 1 0 0 15 35 singleType 1 0 0 0 0 14 -27 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 B 0 1 0 42 100 singleType 1 0 0 1 0 41 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 B 0 1 0 53 91 singleType 1 0 0 1 0 52 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 B 0 1 0 57 97 singleType 1 0 0 1 0 56 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 B 0 1 0 63 100 singleType 1 0 0 1 0 62 21 0 21 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 B 0 1 0 67 92 singleType 1 0 0 1 0 66 25 0 25 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 B 0 1 0 73 84 singleType 1 0 0 1 0 72 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 B 0 1 0 80 62 generalization 0 0 1 1 0 79 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 6 5 B 0 1 0 86 75 generalization 0 0 1 1 0 85 44 0 44 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 1 A 1 0 0 1 2 singleType 1 0 0 0 0 0 -14 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 1 A 1 0 0 4 2 singleType 1 0 0 0 0 3 -11 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 1 A 1 0 0 7 2 singleType 1 0 0 0 0 6 -8 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 1 A 1 0 0 11 2 singleType 1 0 0 0 0 10 -4 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 1 B 0 1 0 15 100 singleType 1 0 0 1 0 14 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 1 B 0 1 0 22 92 singleType 1 0 0 1 0 21 7 0 7 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 1 B 0 1 0 26 99 singleType 1 0 0 1 0 25 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 1 B 0 1 0 34 99 singleType 1 0 0 1 0 33 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 1 B 0 1 0 38 99 singleType 1 0 0 1 0 37 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 1 B 0 1 0 45 100 singleType 1 0 0 1 0 44 30 0 30 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 1 B 0 1 0 53 100 generalization 0 0 1 1 0 52 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 1 B 0 1 0 60 100 generalization 0 0 1 1 0 59 45 0 45 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 A 1 0 0 1 6 singleType 1 0 0 0 0 0 -41 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 A 1 0 0 4 51 singleType 1 0 0 0 0 3 -38 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 A 1 0 0 7 23 singleType 1 0 0 0 0 6 -35 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 A 1 0 0 11 25 singleType 1 0 0 0 0 10 -31 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 A 1 0 0 14 23 singleType 1 0 0 0 0 13 -28 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 B 0 1 0 42 90 singleType 1 0 0 1 0 41 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 B 0 1 0 53 100 singleType 1 0 0 1 0 52 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 B 0 1 0 57 100 singleType 1 0 0 1 0 56 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 B 0 1 0 64 100 singleType 1 0 0 1 0 63 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 B 0 1 0 68 100 singleType 1 0 0 1 0 67 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 B 0 1 0 74 100 singleType 1 0 0 1 0 73 32 0 32 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 B 0 1 0 79 92 generalization 0 0 1 1 0 78 37 0 37 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 2 B 0 1 0 87 100 generalization 0 0 1 1 0 86 45 0 45 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 A 1 0 0 2 13 singleType 1 0 0 0 0 0 -85 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 A 1 0 0 6 2 singleType 1 0 0 0 0 4 -81 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 A 1 0 0 9 20 singleType 1 0 0 0 0 7 -78 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 A 1 0 0 13 20 singleType 1 0 0 0 0 11 -74 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 A 1 0 0 17 6 singleType 1 0 0 0 0 15 -70 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 B 0 1 0 87 99 singleType 1 0 0 1 0 85 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 B 0 1 0 98 99 singleType 1 0 0 1 0 96 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 B 0 1 0 102 99 singleType 1 0 0 1 0 100 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 B 0 1 0 108 98 singleType 1 0 0 1 0 106 21 0 21 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 B 0 1 0 112 100 singleType 1 0 0 1 0 110 25 0 25 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 B 0 1 0 119 99 singleType 1 0 0 1 0 117 32 0 32 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 B 0 1 0 124 70 generalization 0 0 1 1 0 122 37 0 37 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 3 B 0 1 0 128 98 generalization 0 0 1 1 0 126 41 0 41 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 4 A 1 0 0 2 19 singleType 1 0 0 0 0 0 -13 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 4 A 1 0 0 5 27 singleType 1 0 0 0 0 3 -10 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 4 A 1 0 0 8 19 singleType 1 0 0 0 0 6 -7 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 4 A 1 0 0 11 18 singleType 1 0 0 0 0 9 -4 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 4 B 0 1 0 15 99 singleType 1 0 0 1 0 13 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 4 B 0 1 0 23 99 singleType 1 0 0 1 0 21 8 0 8 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 4 B 0 1 0 26 98 singleType 1 0 0 1 0 24 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 4 B 0 1 0 34 99 singleType 1 0 0 1 0 32 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 4 B 0 1 0 38 99 singleType 1 0 0 1 0 36 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 4 B 0 1 0 46 99 singleType 1 0 0 1 0 44 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 4 B 0 1 0 53 70 generalization 0 0 1 1 0 51 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 4 B 0 1 0 60 82 generalization 0 0 1 1 0 58 45 0 45 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 A 1 0 0 2 2 singleType 1 0 0 0 0 0 -40 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 A 1 0 0 6 2 singleType 1 0 0 0 0 4 -36 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 A 1 0 0 8 2 singleType 1 0 0 0 0 6 -34 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 A 1 0 0 12 2 singleType 1 0 0 0 0 10 -30 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 A 1 0 0 15 2 singleType 1 0 0 0 0 13 -27 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 B 0 1 0 42 100 singleType 1 0 0 1 0 40 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 B 0 1 0 54 91 singleType 1 0 0 1 0 52 12 0 12 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 B 0 1 0 57 100 singleType 1 0 0 1 0 55 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 B 0 1 0 64 100 singleType 1 0 0 1 0 62 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 B 0 1 0 67 90 singleType 1 0 0 1 0 65 25 0 25 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 B 0 1 0 73 89 singleType 1 0 0 1 0 71 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 B 0 1 0 80 67 generalization 0 0 1 1 0 78 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 7 5 B 0 1 0 86 74 generalization 0 0 1 1 0 84 44 0 44 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 1 A 1 0 0 1 75 singleType 1 0 0 0 0 0 -14 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 1 A 1 0 0 4 75 singleType 1 0 0 0 0 3 -11 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 1 A 1 0 0 7 100 singleType 1 0 0 0 0 6 -8 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 1 A 1 0 0 11 55 singleType 1 0 0 0 0 10 -4 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 1 B 0 1 0 15 95 singleType 1 0 0 1 0 14 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 1 B 0 1 0 22 98 singleType 1 0 0 1 0 21 7 0 7 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 1 B 0 1 0 26 96 singleType 1 0 0 1 0 25 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 1 B 0 1 0 34 97 singleType 1 0 0 1 0 33 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 1 B 0 1 0 38 95 singleType 1 0 0 1 0 37 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 1 B 0 1 0 45 96 singleType 1 0 0 1 0 44 30 0 30 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 1 B 0 1 0 53 95 generalization 0 0 1 1 0 52 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 1 B 0 1 0 60 95 generalization 0 0 1 1 0 59 45 0 45 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 A 1 0 0 1 1 singleType 1 0 0 0 0 0 -41 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 A 1 0 0 4 16 singleType 1 0 0 0 0 3 -38 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 A 1 0 0 7 16 singleType 1 0 0 0 0 6 -35 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 A 1 0 0 11 22 singleType 1 0 0 0 0 10 -31 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 A 1 0 0 14 9 singleType 1 0 0 0 0 13 -28 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 B 0 1 0 42 95 singleType 1 0 0 1 0 41 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 B 0 1 0 53 98 singleType 1 0 0 1 0 52 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 B 0 1 0 57 99 singleType 1 0 0 1 0 56 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 B 0 1 0 64 99 singleType 1 0 0 1 0 63 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 B 0 1 0 68 99 singleType 1 0 0 1 0 67 26 0 26 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 B 0 1 0 74 99 singleType 1 0 0 1 0 73 32 0 32 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 B 0 1 0 79 100 generalization 0 0 1 1 0 78 37 0 37 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 2 B 0 1 0 87 98 generalization 0 0 1 1 0 86 45 0 45 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 A 1 0 0 2 77 singleType 1 0 0 0 0 0 -85 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 A 1 0 0 6 20 singleType 1 0 0 0 0 4 -81 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 A 1 0 0 9 48 singleType 1 0 0 0 0 7 -78 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 A 1 0 0 13 79 singleType 1 0 0 0 0 11 -74 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 A 1 0 0 17 4 singleType 1 0 0 0 0 15 -70 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 B 0 1 0 87 95 singleType 1 0 0 1 0 85 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 B 0 1 0 98 96 singleType 1 0 0 1 0 96 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 B 0 1 0 102 97 singleType 1 0 0 1 0 100 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 B 0 1 0 108 97 singleType 1 0 0 1 0 106 21 0 21 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 B 0 1 0 112 96 singleType 1 0 0 1 0 110 25 0 25 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 B 0 1 0 119 97 singleType 1 0 0 1 0 117 32 0 32 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 B 0 1 0 124 77 generalization 0 0 1 1 0 122 37 0 37 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 3 B 0 1 0 128 93 generalization 0 0 1 1 0 126 41 0 41 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 4 A 1 0 0 2 26 singleType 1 0 0 0 0 0 -13 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 4 A 1 0 0 5 43 singleType 1 0 0 0 0 3 -10 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 4 A 1 0 0 8 27 singleType 1 0 0 0 0 6 -7 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 4 A 1 0 0 11 33 singleType 1 0 0 0 0 9 -4 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 4 B 0 1 0 15 96 singleType 1 0 0 1 0 13 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 4 B 0 1 0 23 93 singleType 1 0 0 1 0 21 8 0 8 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 4 B 0 1 0 26 95 singleType 1 0 0 1 0 24 11 0 11 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 4 B 0 1 0 34 97 singleType 1 0 0 1 0 32 19 0 19 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 4 B 0 1 0 38 95 singleType 1 0 0 1 0 36 23 0 23 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 4 B 0 1 0 46 96 singleType 1 0 0 1 0 44 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 4 B 0 1 0 53 66 generalization 0 0 1 1 0 51 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 4 B 0 1 0 60 78 generalization 0 0 1 1 0 58 45 0 45 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 A 1 0 0 2 44 singleType 1 0 0 0 0 0 -40 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 A 1 0 0 6 39 singleType 1 0 0 0 0 4 -36 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 A 1 0 0 8 29 singleType 1 0 0 0 0 6 -34 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 A 1 0 0 12 38 singleType 1 0 0 0 0 10 -30 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 A 1 0 0 15 60 singleType 1 0 0 0 0 13 -27 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 B 0 1 0 42 98 singleType 1 0 0 1 0 40 0 0 0 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 B 0 1 0 54 96 singleType 1 0 0 1 0 52 12 0 12 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 B 0 1 0 57 98 singleType 1 0 0 1 0 55 15 0 15 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 B 0 1 0 64 99 singleType 1 0 0 1 0 62 22 0 22 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 B 0 1 0 67 95 singleType 1 0 0 1 0 65 25 0 25 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 B 0 1 0 73 98 singleType 1 0 0 1 0 71 31 0 31 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 B 0 1 0 80 62 generalization 0 0 1 1 0 78 38 0 38 0
Maccini & Hughes (2000) 9 multiProbe 0 1 8 5 B 0 1 0 86 79 generalization 0 0 1 1 0 84 44 0 44 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 1 A 1 0 0 1 3 singleType 1 0 0 0 0 0 -5 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 1 A 1 0 0 2 10 singleType 1 0 0 0 0 1 -4 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 1 A 1 0 0 3 51 singleType 1 0 0 0 0 2 -3 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 1 A 1 0 0 4 51 singleType 1 0 0 0 0 3 -2 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 1 B 0 1 0 6 89 singleType 1 0 0 1 0 5 0 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 1 B 0 1 0 7 100 singleType 1 0 0 1 0 6 1 0 1 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 1 B 0 1 0 9 100 singleType 1 0 0 1 0 8 3 0 3 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 1 B 0 1 0 10 100 singleType 1 0 0 1 0 9 4 0 4 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 1 B 0 1 0 12 100 singleType 1 0 0 1 0 11 6 0 6 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 1 B 0 1 0 13 100 singleType 1 0 0 1 0 12 7 0 7 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 1 B 0 1 0 15 65 generalization 0 0 1 1 0 14 9 0 9 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 1 B 0 1 0 17 48 generalization 0 0 1 1 0 16 11 0 11 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 2 A 1 0 0 1 2 singleType 1 0 0 0 0 0 -7 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 2 A 1 0 0 2 50 singleType 1 0 0 0 0 1 -6 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 2 A 1 0 0 3 50 singleType 1 0 0 0 0 2 -5 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 2 A 1 0 0 6 36 singleType 1 0 0 0 0 5 -2 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 2 B 0 1 0 8 100 singleType 1 0 0 1 0 7 0 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 2 B 0 1 0 9 100 singleType 1 0 0 1 0 8 1 0 1 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 2 B 0 1 0 11 92 singleType 1 0 0 1 0 10 3 0 3 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 2 B 0 1 0 12 92 singleType 1 0 0 1 0 11 4 0 4 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 2 B 0 1 0 14 100 singleType 1 0 0 1 0 13 6 0 6 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 2 B 0 1 0 15 91 singleType 1 0 0 1 0 14 7 0 7 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 2 B 0 1 0 17 82 generalization 0 0 1 1 0 16 9 0 9 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 2 B 0 1 0 19 44 generalization 0 0 1 1 0 18 11 0 11 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 3 A 1 0 0 2 19 singleType 1 0 0 0 0 0 -7 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 3 A 1 0 0 3 3 singleType 1 0 0 0 0 1 -6 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 3 A 1 0 0 6 98 singleType 1 0 0 0 0 4 -3 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 3 A 1 0 0 7 73 singleType 1 0 0 0 0 5 -2 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 3 B 0 1 0 9 89 singleType 1 0 0 1 0 7 0 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 3 B 0 1 0 10 98 singleType 1 0 0 1 0 8 1 0 1 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 3 B 0 1 0 12 99 singleType 1 0 0 1 0 10 3 0 3 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 3 B 0 1 0 13 92 singleType 1 0 0 1 0 11 4 0 4 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 3 B 0 1 0 15 76 singleType 1 0 0 1 0 13 6 0 6 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 3 B 0 1 0 16 99 singleType 1 0 0 1 0 14 7 0 7 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 3 B 0 1 0 18 76 generalization 0 0 1 1 0 16 9 0 9 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 1 3 B 0 1 0 20 3 generalization 0 0 1 1 0 18 11 0 11 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 1 A 1 0 0 1 36 singleType 1 0 0 0 0 0 -5 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 1 A 1 0 0 2 31 singleType 1 0 0 0 0 1 -4 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 1 A 1 0 0 3 19 singleType 1 0 0 0 0 2 -3 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 1 A 1 0 0 4 18 singleType 1 0 0 0 0 3 -2 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 1 B 0 1 0 6 93 singleType 1 0 0 1 0 5 0 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 1 B 0 1 0 7 83 singleType 1 0 0 1 0 6 1 0 1 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 1 B 0 1 0 9 87 singleType 1 0 0 1 0 8 3 0 3 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 1 B 0 1 0 10 92 singleType 1 0 0 1 0 9 4 0 4 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 1 B 0 1 0 12 92 singleType 1 0 0 1 0 11 6 0 6 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 1 B 0 1 0 13 96 singleType 1 0 0 1 0 12 7 0 7 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 1 B 0 1 0 15 53 generalization 0 0 1 1 0 14 9 0 9 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 1 B 0 1 0 17 39 generalization 0 0 1 1 0 16 11 0 11 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 2 A 1 0 0 1 57 singleType 1 0 0 0 0 0 -7 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 2 A 1 0 0 2 43 singleType 1 0 0 0 0 1 -6 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 2 A 1 0 0 3 43 singleType 1 0 0 0 0 2 -5 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 2 A 1 0 0 6 44 singleType 1 0 0 0 0 5 -2 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 2 B 0 1 0 8 76 singleType 1 0 0 1 0 7 0 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 2 B 0 1 0 9 76 singleType 1 0 0 1 0 8 1 0 1 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 2 B 0 1 0 11 83 singleType 1 0 0 1 0 10 3 0 3 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 2 B 0 1 0 12 49 singleType 1 0 0 1 0 11 4 0 4 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 2 B 0 1 0 14 94 singleType 1 0 0 1 0 13 6 0 6 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 2 B 0 1 0 15 85 singleType 1 0 0 1 0 14 7 0 7 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 2 B 0 1 0 17 86 generalization 0 0 1 1 0 16 9 0 9 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 2 B 0 1 0 19 38 generalization 0 0 1 1 0 18 11 0 11 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 3 A 1 0 0 2 41 singleType 1 0 0 0 0 0 -7 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 3 A 1 0 0 3 10 singleType 1 0 0 0 0 1 -6 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 3 A 1 0 0 6 25 singleType 1 0 0 0 0 4 -3 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 3 A 1 0 0 7 47 singleType 1 0 0 0 0 5 -2 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 3 B 0 1 0 9 98 singleType 1 0 0 1 0 7 0 0 0 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 3 B 0 1 0 10 88 singleType 1 0 0 1 0 8 1 0 1 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 3 B 0 1 0 12 88 singleType 1 0 0 1 0 10 3 0 3 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 3 B 0 1 0 13 80 singleType 1 0 0 1 0 11 4 0 4 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 3 B 0 1 0 15 66 singleType 1 0 0 1 0 13 6 0 6 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 3 B 0 1 0 16 96 singleType 1 0 0 1 0 14 7 0 7 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 3 B 0 1 0 18 70 generalization 0 0 1 1 0 16 9 0 9 0
Maccini & Ruhl (2000) 10 multiProbe 0 1 2 3 B 0 1 0 20 8 generalization 0 0 1 1 0 18 11 0 11 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 A 1 0 0 1 30 mixedType 0 1 0 0 0 0 -5 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 A 1 0 0 2 40 mixedType 0 1 0 0 0 1 -4 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 A 1 0 0 3 40 mixedType 0 1 0 0 0 2 -3 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 A 1 0 0 4 40 mixedType 0 1 0 0 0 3 -2 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 A 1 0 0 5 40 mixedType 0 1 0 0 0 4 -1 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 B 0 1 0 6 70 mixedType 0 1 0 1 0 5 0 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 B 0 1 0 7 70 mixedType 0 1 0 1 0 6 1 0 1 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 B 0 1 0 8 80 mixedType 0 1 0 1 0 7 2 0 2 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 B 0 1 0 9 90 mixedType 0 1 0 1 0 8 3 0 3 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 B 0 1 0 10 100 mixedType 0 1 0 1 0 9 4 0 4 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 B 0 1 0 11 90 mixedType 0 1 0 1 0 10 5 0 5 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 B 0 1 0 12 100 mixedType 0 1 0 1 0 11 6 0 6 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 B 0 1 0 13 100 mixedType 0 1 0 1 0 12 7 0 7 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 B 0 1 0 14 90 mixedType 0 1 0 1 0 13 8 0 8 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 B 0 1 0 15 100 mixedType 0 1 0 1 0 14 9 0 9 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 B 0 1 0 16 100 mixedType 0 1 0 1 0 15 10 0 10 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 1 B 0 1 0 17 100 mixedType 0 1 0 1 0 16 11 0 11 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 A 1 0 0 1 30 mixedType 0 1 0 0 0 0 -9 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 A 1 0 0 2 30 mixedType 0 1 0 0 0 1 -8 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 A 1 0 0 3 20 mixedType 0 1 0 0 0 2 -7 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 A 1 0 0 4 40 mixedType 0 1 0 0 0 3 -6 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 A 1 0 0 5 30 mixedType 0 1 0 0 0 4 -5 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 A 1 0 0 6 30 mixedType 0 1 0 0 0 5 -4 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 A 1 0 0 7 10 mixedType 0 1 0 0 0 6 -3 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 A 1 0 0 8 10 mixedType 0 1 0 0 0 7 -2 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 A 1 0 0 9 20 mixedType 0 1 0 0 0 8 -1 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 B 0 1 0 10 80 mixedType 0 1 0 1 0 9 0 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 B 0 1 0 11 90 mixedType 0 1 0 1 0 10 1 0 1 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 B 0 1 0 12 100 mixedType 0 1 0 1 0 11 2 0 2 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 B 0 1 0 13 100 mixedType 0 1 0 1 0 12 3 0 3 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 B 0 1 0 14 90 mixedType 0 1 0 1 0 13 4 0 4 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 B 0 1 0 15 100 mixedType 0 1 0 1 0 14 5 0 5 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 B 0 1 0 16 90 mixedType 0 1 0 1 0 15 6 0 6 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 2 B 0 1 0 17 90 mixedType 0 1 0 1 0 16 7 0 7 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 1 20 mixedType 0 1 0 0 0 0 -13 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 2 20 mixedType 0 1 0 0 0 1 -12 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 3 20 mixedType 0 1 0 0 0 2 -11 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 4 30 mixedType 0 1 0 0 0 3 -10 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 5 10 mixedType 0 1 0 0 0 4 -9 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 6 20 mixedType 0 1 0 0 0 5 -8 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 7 10 mixedType 0 1 0 0 0 6 -7 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 8 20 mixedType 0 1 0 0 0 7 -6 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 9 20 mixedType 0 1 0 0 0 8 -5 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 10 20 mixedType 0 1 0 0 0 9 -4 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 11 20 mixedType 0 1 0 0 0 10 -3 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 12 10 mixedType 0 1 0 0 0 11 -2 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 A 1 0 0 13 20 mixedType 0 1 0 0 0 12 -1 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 B 0 1 0 14 90 mixedType 0 1 0 1 0 13 0 0 0 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 B 0 1 0 15 90 mixedType 0 1 0 1 0 14 1 0 1 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 B 0 1 0 16 90 mixedType 0 1 0 1 0 15 2 0 2 0
Marsh & Cooke (1996) 11 multiBase 1 0 1 3 B 0 1 0 17 90 mixedType 0 1 0 1 0 16 3 0 3 0
Montague (1992) 12 multiProbe 0 1 1 1 A 1 0 0 1 40 mixedType 0 1 0 0 0 0 -3 -21 0 0
Montague (1992) 12 multiProbe 0 1 1 1 A 1 0 0 2 60 mixedType 0 1 0 0 0 1 -2 -20 0 0
Montague (1992) 12 multiProbe 0 1 1 1 A 1 0 0 3 30 mixedType 0 1 0 0 0 2 -1 -19 0 0
Montague (1992) 12 multiProbe 0 1 1 1 B 0 1 0 4 50 mixedType 0 1 0 1 0 3 0 -18 0 0
Montague (1992) 12 multiProbe 0 1 1 1 B 0 1 0 5 60 mixedType 0 1 0 1 0 4 1 -17 1 0
Montague (1992) 12 multiProbe 0 1 1 1 B 0 1 0 6 50 mixedType 0 1 0 1 0 5 2 -16 2 0
Montague (1992) 12 multiProbe 0 1 1 1 B 0 1 0 7 40 mixedType 0 1 0 1 0 6 3 -15 3 0
Montague (1992) 12 multiProbe 0 1 1 1 B 0 1 0 8 70 mixedType 0 1 0 1 0 7 4 -14 4 0
Montague (1992) 12 multiProbe 0 1 1 1 B 0 1 0 9 70 mixedType 0 1 0 1 0 8 5 -13 5 0
Montague (1992) 12 multiProbe 0 1 1 1 B 0 1 0 10 80 mixedType 0 1 0 1 0 9 6 -12 6 0
Montague (1992) 12 multiProbe 0 1 1 1 B 0 1 0 11 70 mixedType 0 1 0 1 0 10 7 -11 7 0
Montague (1992) 12 multiProbe 0 1 1 1 M 0 0 1 22 70 mixedType 0 1 0 1 1 21 18 0 18 0
Montague (1992) 12 multiProbe 0 1 1 1 M 0 0 1 25 60 mixedType 0 1 0 1 1 24 21 3 21 3
Montague (1992) 12 multiProbe 0 1 1 1 M 0 0 1 26 70 mixedType 0 1 0 1 1 25 22 4 22 4
Montague (1992) 12 multiProbe 0 1 1 2 A 1 0 0 1 30 mixedType 0 1 0 0 0 0 -7 -21 0 0
Montague (1992) 12 multiProbe 0 1 1 2 A 1 0 0 4 30 mixedType 0 1 0 0 0 3 -4 -18 0 0
Montague (1992) 12 multiProbe 0 1 1 2 A 1 0 0 7 40 mixedType 0 1 0 0 0 6 -1 -15 0 0
Montague (1992) 12 multiProbe 0 1 1 2 B 0 1 0 8 30 mixedType 0 1 0 1 0 7 0 -14 0 0
Montague (1992) 12 multiProbe 0 1 1 2 B 0 1 0 9 80 mixedType 0 1 0 1 0 8 1 -13 1 0
Montague (1992) 12 multiProbe 0 1 1 2 B 0 1 0 10 40 mixedType 0 1 0 1 0 9 2 -12 2 0
Montague (1992) 12 multiProbe 0 1 1 2 B 0 1 0 12 70 mixedType 0 1 0 1 0 11 4 -10 4 0
Montague (1992) 12 multiProbe 0 1 1 2 B 0 1 0 13 90 mixedType 0 1 0 1 0 12 5 -9 5 0
Montague (1992) 12 multiProbe 0 1 1 2 B 0 1 0 14 70 mixedType 0 1 0 1 0 13 6 -8 6 0
Montague (1992) 12 multiProbe 0 1 1 2 B 0 1 0 15 80 mixedType 0 1 0 1 0 14 7 -7 7 0
Montague (1992) 12 multiProbe 0 1 1 2 M 0 0 1 22 70 mixedType 0 1 0 1 1 21 14 0 14 0
Montague (1992) 12 multiProbe 0 1 1 2 M 0 0 1 25 30 mixedType 0 1 0 1 1 24 17 3 17 3
Montague (1992) 12 multiProbe 0 1 1 3 A 1 0 0 1 10 mixedType 0 1 0 0 0 0 -11 0 0 0
Montague (1992) 12 multiProbe 0 1 1 3 A 1 0 0 4 30 mixedType 0 1 0 0 0 3 -8 0 0 0
Montague (1992) 12 multiProbe 0 1 1 3 A 1 0 0 10 30 mixedType 0 1 0 0 0 9 -2 0 0 0
Montague (1992) 12 multiProbe 0 1 1 3 B 0 1 0 12 30 mixedType 0 1 0 1 0 11 0 0 0 0
Montague (1992) 12 multiProbe 0 1 1 3 B 0 1 0 13 30 mixedType 0 1 0 1 0 12 1 0 1 0
Montague (1992) 12 multiProbe 0 1 1 3 B 0 1 0 15 20 mixedType 0 1 0 1 0 14 3 0 3 0
Montague (1992) 12 multiProbe 0 1 1 3 B 0 1 0 16 50 mixedType 0 1 0 1 0 15 4 0 4 0
Montague (1992) 12 multiProbe 0 1 1 3 B 0 1 0 17 30 mixedType 0 1 0 1 0 16 5 0 5 0
Montague (1992) 12 multiProbe 0 1 1 3 B 0 1 0 18 50 mixedType 0 1 0 1 0 17 6 0 6 0
Montague (1992) 12 multiProbe 0 1 1 3 B 0 1 0 19 30 mixedType 0 1 0 1 0 18 7 0 7 0
Montague (1992) 12 multiProbe 0 1 1 3 B 0 1 0 20 30 mixedType 0 1 0 1 0 19 8 0 8 0
Montague (1992) 12 multiProbe 0 1 1 3 B 0 1 0 21 40 mixedType 0 1 0 1 0 20 9 0 9 0
Montague (1992) 12 multiProbe 0 1 1 3 B 0 1 0 22 60 mixedType 0 1 0 1 0 21 10 0 10 0
Montague (1992) 12 multiProbe 0 1 1 3 B 0 1 0 23 50 mixedType 0 1 0 1 0 22 11 0 11 0
Montague & Bos (1986) 13 multiBase 1 0 1 1 A 1 0 0 1 50 mixedType 0 1 0 0 0 0 -3 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 1 A 1 0 0 2 40 mixedType 0 1 0 0 0 1 -2 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 1 A 1 0 0 3 10 mixedType 0 1 0 0 0 2 -1 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 1 B 0 1 0 4 70 mixedType 0 1 0 1 0 3 0 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 1 B 0 1 0 5 60 mixedType 0 1 0 1 0 4 1 0 1 0
Montague & Bos (1986) 13 multiBase 1 0 1 1 B 0 1 0 6 80 mixedType 0 1 0 1 0 5 2 0 2 0
Montague & Bos (1986) 13 multiBase 1 0 1 1 B 0 1 0 7 70 mixedType 0 1 0 1 0 6 3 0 3 0
Montague & Bos (1986) 13 multiBase 1 0 1 1 B 0 1 0 8 90 mixedType 0 1 0 1 0 7 4 0 4 0
Montague & Bos (1986) 13 multiBase 1 0 1 1 B 0 1 0 9 100 mixedType 0 1 0 1 0 8 5 0 5 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 A 1 0 0 1 30 mixedType 0 1 0 0 0 0 -7 -17 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 A 1 0 0 2 20 mixedType 0 1 0 0 0 1 -6 -16 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 A 1 0 0 3 50 mixedType 0 1 0 0 0 2 -5 -15 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 A 1 0 0 4 40 mixedType 0 1 0 0 0 3 -4 -14 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 A 1 0 0 5 20 mixedType 0 1 0 0 0 4 -3 -13 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 A 1 0 0 6 40 mixedType 0 1 0 0 0 5 -2 -12 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 A 1 0 0 7 30 mixedType 0 1 0 0 0 6 -1 -11 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 B 0 1 0 8 60 mixedType 0 1 0 1 0 7 0 -10 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 B 0 1 0 9 90 mixedType 0 1 0 1 0 8 1 -9 1 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 B 0 1 0 10 100 mixedType 0 1 0 1 0 9 2 -8 2 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 B 0 1 0 11 80 mixedType 0 1 0 1 0 10 3 -7 3 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 B 0 1 0 12 50 mixedType 0 1 0 1 0 11 4 -6 4 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 B 0 1 0 13 100 mixedType 0 1 0 1 0 12 5 -5 5 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 B 0 1 0 14 90 mixedType 0 1 0 1 0 13 6 -4 6 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 B 0 1 0 15 90 mixedType 0 1 0 1 0 14 7 -3 7 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 B 0 1 0 16 80 mixedType 0 1 0 1 0 15 8 -2 8 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 M 0 0 1 18 50 mixedType 0 1 0 1 1 17 10 0 10 0
Montague & Bos (1986) 13 multiBase 1 0 1 2 M 0 0 1 20 70 mixedType 0 1 0 1 1 19 12 2 12 2
Montague & Bos (1986) 13 multiBase 1 0 1 3 A 1 0 0 1 50 mixedType 0 1 0 0 0 0 -10 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 A 1 0 0 2 50 mixedType 0 1 0 0 0 1 -9 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 A 1 0 0 3 20 mixedType 0 1 0 0 0 2 -8 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 A 1 0 0 4 60 mixedType 0 1 0 0 0 3 -7 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 A 1 0 0 5 20 mixedType 0 1 0 0 0 4 -6 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 A 1 0 0 6 60 mixedType 0 1 0 0 0 5 -5 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 A 1 0 0 7 70 mixedType 0 1 0 0 0 6 -4 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 A 1 0 0 8 70 mixedType 0 1 0 0 0 7 -3 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 A 1 0 0 9 40 mixedType 0 1 0 0 0 8 -2 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 A 1 0 0 10 50 mixedType 0 1 0 0 0 9 -1 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 B 0 1 0 11 40 mixedType 0 1 0 1 0 10 0 0 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 B 0 1 0 12 60 mixedType 0 1 0 1 0 11 1 0 1 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 B 0 1 0 13 80 mixedType 0 1 0 1 0 12 2 0 2 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 B 0 1 0 14 70 mixedType 0 1 0 1 0 13 3 0 3 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 B 0 1 0 15 80 mixedType 0 1 0 1 0 14 4 0 4 0
Montague & Bos (1986) 13 multiBase 1 0 1 3 B 0 1 0 16 70 mixedType 0 1 0 1 0 15 5 0 5 0
Montague & Bos (1986) 13 multiBase 1 0 1 4 A 1 0 0 1 20 mixedType 0 1 0 0 0 0 -3 -9 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 4 A 1 0 0 2 20 mixedType 0 1 0 0 0 1 -2 -8 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 4 A 1 0 0 3 20 mixedType 0 1 0 0 0 2 -1 -7 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 4 B 0 1 0 4 60 mixedType 0 1 0 1 0 3 0 -6 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 4 B 0 1 0 5 90 mixedType 0 1 0 1 0 4 1 -5 1 0
Montague & Bos (1986) 13 multiBase 1 0 1 4 B 0 1 0 6 70 mixedType 0 1 0 1 0 5 2 -4 2 0
Montague & Bos (1986) 13 multiBase 1 0 1 4 B 0 1 0 7 100 mixedType 0 1 0 1 0 6 3 -3 3 0
Montague & Bos (1986) 13 multiBase 1 0 1 4 B 0 1 0 8 90 mixedType 0 1 0 1 0 7 4 -2 4 0
Montague & Bos (1986) 13 multiBase 1 0 1 4 M 0 0 1 10 80 mixedType 0 1 0 1 1 9 6 0 6 0
Montague & Bos (1986) 13 multiBase 1 0 1 4 M 0 0 1 11 100 mixedType 0 1 0 1 1 10 7 1 7 1
Montague & Bos (1986) 13 multiBase 1 0 1 5 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -7 -16 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 A 1 0 0 2 0 mixedType 0 1 0 0 0 1 -6 -15 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -5 -14 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -4 -13 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -3 -12 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 A 1 0 0 6 0 mixedType 0 1 0 0 0 5 -2 -11 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 A 1 0 0 7 0 mixedType 0 1 0 0 0 6 -1 -10 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 B 0 1 0 8 60 mixedType 0 1 0 1 0 7 0 -9 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 B 0 1 0 9 60 mixedType 0 1 0 1 0 8 1 -8 1 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 B 0 1 0 10 50 mixedType 0 1 0 1 0 9 2 -7 2 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 B 0 1 0 11 40 mixedType 0 1 0 1 0 10 3 -6 3 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 B 0 1 0 12 80 mixedType 0 1 0 1 0 11 4 -5 4 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 B 0 1 0 13 70 mixedType 0 1 0 1 0 12 5 -4 5 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 B 0 1 0 14 80 mixedType 0 1 0 1 0 13 6 -3 6 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 B 0 1 0 15 40 mixedType 0 1 0 1 0 14 7 -2 7 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 M 0 0 1 17 50 mixedType 0 1 0 1 1 16 9 0 9 0
Montague & Bos (1986) 13 multiBase 1 0 1 5 M 0 0 1 20 100 mixedType 0 1 0 1 1 19 12 3 12 3
Montague & Bos (1986) 13 multiBase 1 0 1 6 A 1 0 0 1 30 mixedType 0 1 0 0 0 0 -10 -15 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 A 1 0 0 2 10 mixedType 0 1 0 0 0 1 -9 -14 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 A 1 0 0 3 30 mixedType 0 1 0 0 0 2 -8 -13 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -7 -12 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 A 1 0 0 5 10 mixedType 0 1 0 0 0 4 -6 -11 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 A 1 0 0 6 10 mixedType 0 1 0 0 0 5 -5 -10 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 A 1 0 0 7 10 mixedType 0 1 0 0 0 6 -4 -9 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 A 1 0 0 8 10 mixedType 0 1 0 0 0 7 -3 -8 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 A 1 0 0 9 20 mixedType 0 1 0 0 0 8 -2 -7 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 A 1 0 0 10 10 mixedType 0 1 0 0 0 9 -1 -6 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 B 0 1 0 11 80 mixedType 0 1 0 1 0 10 0 -5 0 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 B 0 1 0 12 70 mixedType 0 1 0 1 0 11 1 -4 1 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 B 0 1 0 13 70 mixedType 0 1 0 1 0 12 2 -3 2 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 B 0 1 0 14 90 mixedType 0 1 0 1 0 13 3 -2 3 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 M 0 0 1 16 80 mixedType 0 1 0 1 1 15 5 0 5 0
Montague & Bos (1986) 13 multiBase 1 0 1 6 M 0 0 1 17 80 mixedType 0 1 0 1 1 16 6 1 6 1
Peltier et al. (2020) 14 multiProbe 0 1 1 1 A 1 0 0 1 34 mixedType 0 1 0 0 0 0 -5 -20 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 A 1 0 0 2 18 mixedType 0 1 0 0 0 1 -4 -19 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 A 1 0 0 3 25 mixedType 0 1 0 0 0 2 -3 -18 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 A 1 0 0 4 33 mixedType 0 1 0 0 0 3 -2 -17 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 A 1 0 0 5 25 mixedType 0 1 0 0 0 4 -1 -16 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 6 100 singleType 1 0 0 1 0 5 0 -15 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 7 100 singleType 1 0 0 1 0 6 1 -14 1 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 8 100 singleType 1 0 0 1 0 7 2 -13 2 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 9 100 generalization 0 0 1 1 0 8 3 -12 3 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 10 100 singleType 1 0 0 1 0 9 4 -11 4 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 11 90 singleType 1 0 0 1 0 10 5 -10 5 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 12 100 singleType 1 0 0 1 0 11 6 -9 6 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 13 100 generalization 0 0 1 1 0 12 7 -8 7 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 14 100 singleType 1 0 0 1 0 13 8 -7 8 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 15 100 singleType 1 0 0 1 0 14 9 -6 9 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 16 100 singleType 1 0 0 1 0 15 10 -5 10 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 17 90 generalization 0 0 1 1 0 16 11 -4 11 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 18 80 mixedType 0 1 0 1 0 17 12 -3 12 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 19 80 mixedType 0 1 0 1 0 18 13 -2 13 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 B 0 1 0 20 95 mixedType 0 1 0 1 0 19 14 -1 14 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 M 0 0 1 21 80 mixedType 0 1 0 1 1 20 15 0 15 0
Peltier et al. (2020) 14 multiProbe 0 1 1 1 M 0 0 1 22 100 mixedType 0 1 0 1 1 21 16 1 16 1
Peltier et al. (2020) 14 multiProbe 0 1 1 1 M 0 0 1 23 75 mixedType 0 1 0 1 1 22 17 2 17 2
Peltier et al. (2020) 14 multiProbe 0 1 1 1 M 0 0 1 24 97 mixedType 0 1 0 1 1 23 18 3 18 3
Peltier et al. (2020) 14 multiProbe 0 1 1 1 M 0 0 1 25 99 mixedType 0 1 0 1 1 24 19 4 19 4
Peltier et al. (2020) 14 multiProbe 0 1 1 1 M 0 0 1 26 100 mixedType 0 1 0 1 1 25 20 5 20 5
Peltier et al. (2020) 14 multiProbe 0 1 1 2 A 1 0 0 1 50 mixedType 0 1 0 0 0 0 -8 -23 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 A 1 0 0 2 26 mixedType 0 1 0 0 0 1 -7 -22 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 A 1 0 0 3 44 mixedType 0 1 0 0 0 2 -6 -21 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 A 1 0 0 6 25 mixedType 0 1 0 0 0 5 -3 -18 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 A 1 0 0 7 9 mixedType 0 1 0 0 0 6 -2 -17 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 A 1 0 0 8 25 mixedType 0 1 0 0 0 7 -1 -16 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 9 90 singleType 1 0 0 1 0 8 0 -15 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 10 100 singleType 1 0 0 1 0 9 1 -14 1 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 11 100 singleType 1 0 0 1 0 10 2 -13 2 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 12 100 generalization 0 0 1 1 0 11 3 -12 3 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 13 90 singleType 1 0 0 1 0 12 4 -11 4 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 14 100 singleType 1 0 0 1 0 13 5 -10 5 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 15 100 singleType 1 0 0 1 0 14 6 -9 6 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 16 100 generalization 0 0 1 1 0 15 7 -8 7 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 17 85 singleType 1 0 0 1 0 16 8 -7 8 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 18 100 singleType 1 0 0 1 0 17 9 -6 9 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 19 70 singleType 1 0 0 1 0 18 10 -5 10 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 20 75 generalization 0 0 1 1 0 19 11 -4 11 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 21 100 mixedType 0 1 0 1 0 20 12 -3 12 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 22 85 mixedType 0 1 0 1 0 21 13 -2 13 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 B 0 1 0 23 65 mixedType 0 1 0 1 0 22 14 -1 14 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 M 0 0 1 24 90 mixedType 0 1 0 1 1 23 15 0 15 0
Peltier et al. (2020) 14 multiProbe 0 1 1 2 M 0 0 1 25 95 mixedType 0 1 0 1 1 24 16 1 16 1
Peltier et al. (2020) 14 multiProbe 0 1 1 2 M 0 0 1 26 99 mixedType 0 1 0 1 1 25 17 2 17 2
Peltier et al. (2020) 14 multiProbe 0 1 1 2 M 0 0 1 27 100 mixedType 0 1 0 1 1 26 18 3 18 3
Peltier et al. (2020) 14 multiProbe 0 1 1 3 A 1 0 0 1 35 mixedType 0 1 0 0 0 0 -11 -26 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 A 1 0 0 2 25 mixedType 0 1 0 0 0 1 -10 -25 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -9 -24 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 A 1 0 0 6 15 mixedType 0 1 0 0 0 5 -6 -21 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 A 1 0 0 7 50 mixedType 0 1 0 0 0 6 -5 -20 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 A 1 0 0 8 15 mixedType 0 1 0 0 0 7 -4 -19 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 A 1 0 0 9 15 mixedType 0 1 0 0 0 8 -3 -18 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 A 1 0 0 10 30 mixedType 0 1 0 0 0 9 -2 -17 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 A 1 0 0 11 50 mixedType 0 1 0 0 0 10 -1 -16 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 12 90 singleType 1 0 0 1 0 11 0 -15 0 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 13 100 singleType 1 0 0 1 0 12 1 -14 1 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 14 100 singleType 1 0 0 1 0 13 2 -13 2 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 15 100 generalization 0 0 1 1 0 14 3 -12 3 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 16 100 singleType 1 0 0 1 0 15 4 -11 4 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 17 65 singleType 1 0 0 1 0 16 5 -10 5 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 18 75 singleType 1 0 0 1 0 17 6 -9 6 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 19 90 generalization 0 0 1 1 0 18 7 -8 7 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 20 80 singleType 1 0 0 1 0 19 8 -7 8 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 21 90 singleType 1 0 0 1 0 20 9 -6 9 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 22 65 singleType 1 0 0 1 0 21 10 -5 10 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 23 100 generalization 0 0 1 1 0 22 11 -4 11 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 24 40 mixedType 0 1 0 1 0 23 12 -3 12 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 25 70 mixedType 0 1 0 1 0 24 13 -2 13 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 B 0 1 0 26 90 mixedType 0 1 0 1 0 25 14 -1 14 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 M 0 0 1 27 75 mixedType 0 1 0 1 1 26 15 0 15 0
Peltier et al. (2020) 14 multiProbe 0 1 1 3 M 0 0 1 28 90 mixedType 0 1 0 1 1 27 16 1 16 1
Peltier et al. (2021) 15 multiProbe 0 1 1 1 A 1 0 0 1 25 mixedType 0 1 0 0 0 0 -5 -20 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 A 1 0 0 2 43 mixedType 0 1 0 0 0 1 -4 -19 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 A 1 0 0 3 25 mixedType 0 1 0 0 0 2 -3 -18 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 A 1 0 0 4 42 mixedType 0 1 0 0 0 3 -2 -17 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 A 1 0 0 5 50 mixedType 0 1 0 0 0 4 -1 -16 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 6 43 singleType 1 0 0 1 0 5 0 -15 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 7 25 singleType 1 0 0 1 0 6 1 -14 1 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 8 50 singleType 1 0 0 1 0 7 2 -13 2 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 10 100 singleType 1 0 0 1 0 9 4 -11 4 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 11 50 singleType 1 0 0 1 0 10 5 -10 5 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 12 100 singleType 1 0 0 1 0 11 6 -9 6 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 13 30 generalization 0 0 1 1 0 12 7 -8 7 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 14 85 singleType 1 0 0 1 0 13 8 -7 8 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 15 95 singleType 1 0 0 1 0 14 9 -6 9 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 16 95 singleType 1 0 0 1 0 15 10 -5 10 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 17 95 generalization 0 0 1 1 0 16 11 -4 11 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 19 50 mixedType 0 1 0 1 0 18 13 -2 13 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 B 0 1 0 20 57 mixedType 0 1 0 1 0 19 14 -1 14 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 M 0 0 1 21 75 mixedType 0 1 0 1 1 20 15 0 15 0
Peltier et al. (2021) 15 multiProbe 0 1 1 1 M 0 0 1 22 72 mixedType 0 1 0 1 1 21 16 1 16 1
Peltier et al. (2021) 15 multiProbe 0 1 1 2 A 1 0 0 1 8 mixedType 0 1 0 0 0 0 -6 -20 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 A 1 0 0 2 25 mixedType 0 1 0 0 0 1 -5 -19 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 A 1 0 0 3 25 mixedType 0 1 0 0 0 2 -4 -18 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 A 1 0 0 4 25 mixedType 0 1 0 0 0 3 -3 -17 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 A 1 0 0 5 16 mixedType 0 1 0 0 0 4 -2 -16 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 B 0 1 0 7 35 singleType 1 0 0 1 0 6 0 -14 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 B 0 1 0 8 25 singleType 1 0 0 1 0 7 1 -13 1 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 B 0 1 0 9 16 generalization 0 0 1 1 0 8 2 -12 2 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 B 0 1 0 10 84 singleType 1 0 0 1 0 9 3 -11 3 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 B 0 1 0 11 50 singleType 1 0 0 1 0 10 4 -10 4 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 B 0 1 0 12 50 singleType 1 0 0 1 0 11 5 -9 5 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 B 0 1 0 13 33 generalization 0 0 1 1 0 12 6 -8 6 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 B 0 1 0 14 85 singleType 1 0 0 1 0 13 7 -7 7 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 B 0 1 0 16 77 singleType 1 0 0 1 0 15 9 -5 9 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 B 0 1 0 18 36 generalization 0 0 1 1 0 17 11 -3 11 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 M 0 0 1 21 35 mixedType 0 1 0 1 1 20 14 0 14 0
Peltier et al. (2021) 15 multiProbe 0 1 1 2 M 0 0 1 22 35 mixedType 0 1 0 1 1 21 15 1 15 1
Peltier et al. (2021) 15 multiProbe 0 1 1 3 A 1 0 0 1 50 mixedType 0 1 0 0 0 0 -7 -22 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 A 1 0 0 2 50 mixedType 0 1 0 0 0 1 -6 -21 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 A 1 0 0 3 40 mixedType 0 1 0 0 0 2 -5 -20 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 A 1 0 0 5 17 mixedType 0 1 0 0 0 4 -3 -18 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 A 1 0 0 6 50 mixedType 0 1 0 0 0 5 -2 -17 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 A 1 0 0 7 25 mixedType 0 1 0 0 0 6 -1 -16 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 8 75 singleType 1 0 0 1 0 7 0 -15 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 9 60 singleType 1 0 0 1 0 8 1 -14 1 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 10 77 singleType 1 0 0 1 0 9 2 -13 2 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 12 60 singleType 1 0 0 1 0 11 4 -11 4 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 13 60 singleType 1 0 0 1 0 12 5 -10 5 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 14 50 singleType 1 0 0 1 0 13 6 -9 6 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 15 83 generalization 0 0 1 1 0 14 7 -8 7 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 16 84 singleType 1 0 0 1 0 15 8 -7 8 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 17 84 singleType 1 0 0 1 0 16 9 -6 9 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 18 84 singleType 1 0 0 1 0 17 10 -5 10 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 19 76 generalization 0 0 1 1 0 18 11 -4 11 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 20 26 mixedType 0 1 0 1 0 19 12 -3 12 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 B 0 1 0 21 60 mixedType 0 1 0 1 0 20 13 -2 13 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 M 0 0 1 23 60 mixedType 0 1 0 1 1 22 15 0 15 0
Peltier et al. (2021) 15 multiProbe 0 1 1 3 M 0 0 1 24 80 mixedType 0 1 0 1 1 23 16 1 16 1
Peltier et al. (2021) 15 multiProbe 0 1 1 4 A 1 0 0 1 16 mixedType 0 1 0 0 0 0 -11 -26 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 A 1 0 0 2 50 mixedType 0 1 0 0 0 1 -10 -25 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 A 1 0 0 3 35 mixedType 0 1 0 0 0 2 -9 -24 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 A 1 0 0 7 50 mixedType 0 1 0 0 0 6 -5 -20 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 A 1 0 0 8 35 mixedType 0 1 0 0 0 7 -4 -19 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 A 1 0 0 9 35 mixedType 0 1 0 0 0 8 -3 -18 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 A 1 0 0 10 43 mixedType 0 1 0 0 0 9 -2 -17 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 A 1 0 0 11 35 mixedType 0 1 0 0 0 10 -1 -16 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 B 0 1 0 12 75 singleType 1 0 0 1 0 11 0 -15 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 B 0 1 0 14 75 singleType 1 0 0 1 0 13 2 -13 2 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 B 0 1 0 15 75 generalization 0 0 1 1 0 14 3 -12 3 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 B 0 1 0 16 67 singleType 1 0 0 1 0 15 4 -11 4 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 B 0 1 0 17 100 singleType 1 0 0 1 0 16 5 -10 5 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 B 0 1 0 18 75 singleType 1 0 0 1 0 17 6 -9 6 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 B 0 1 0 19 100 generalization 0 0 1 1 0 18 7 -8 7 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 B 0 1 0 20 77 singleType 1 0 0 1 0 19 8 -7 8 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 B 0 1 0 21 90 singleType 1 0 0 1 0 20 9 -6 9 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 B 0 1 0 23 77 generalization 0 0 1 1 0 22 11 -4 11 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 B 0 1 0 25 60 mixedType 0 1 0 1 0 24 13 -2 13 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 B 0 1 0 26 57 mixedType 0 1 0 1 0 25 14 -1 14 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 M 0 0 1 27 42 mixedType 0 1 0 1 1 26 15 0 15 0
Peltier et al. (2021) 15 multiProbe 0 1 1 4 M 0 0 1 28 65 mixedType 0 1 0 1 1 27 16 1 16 1
Peltier et al. (2021) 15 multiProbe 0 1 1 5 A 1 0 0 1 7 mixedType 0 1 0 0 0 0 -12 -26 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 A 1 0 0 2 33 mixedType 0 1 0 0 0 1 -11 -25 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 A 1 0 0 3 34 mixedType 0 1 0 0 0 2 -10 -24 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 A 1 0 0 5 33 mixedType 0 1 0 0 0 4 -8 -22 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 A 1 0 0 6 51 mixedType 0 1 0 0 0 5 -7 -21 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 A 1 0 0 8 33 mixedType 0 1 0 0 0 7 -5 -19 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 A 1 0 0 10 51 mixedType 0 1 0 0 0 9 -3 -17 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 A 1 0 0 11 24 mixedType 0 1 0 0 0 10 -2 -16 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 B 0 1 0 13 100 singleType 1 0 0 1 0 12 0 -14 0 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 B 0 1 0 15 84 generalization 0 0 1 1 0 14 2 -12 2 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 B 0 1 0 16 81 singleType 1 0 0 1 0 15 3 -11 3 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 B 0 1 0 17 99 singleType 1 0 0 1 0 16 4 -10 4 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 B 0 1 0 19 81 generalization 0 0 1 1 0 18 6 -8 6 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 B 0 1 0 20 89 singleType 1 0 0 1 0 19 7 -7 7 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 B 0 1 0 21 76 singleType 1 0 0 1 0 20 8 -6 8 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 B 0 1 0 22 88 singleType 1 0 0 1 0 21 9 -5 9 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 B 0 1 0 24 75 mixedType 0 1 0 1 0 23 11 -3 11 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 B 0 1 0 26 84 mixedType 0 1 0 1 0 25 13 -1 13 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 M 0 0 1 27 84 mixedType 0 1 0 1 1 26 14 0 14 0
Peltier et al. (2021) 15 multiProbe 0 1 1 5 M 0 0 1 28 84 mixedType 0 1 0 1 1 27 15 1 15 1
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -6 -13 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 A 1 0 0 2 0 mixedType 0 1 0 0 0 1 -5 -12 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -4 -11 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -3 -10 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -2 -9 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 B 0 1 0 7 100 mixedType 0 1 0 1 0 6 0 -7 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 B 0 1 0 8 100 mixedType 0 1 0 1 0 7 1 -6 1 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 B 0 1 0 9 100 mixedType 0 1 0 1 0 8 2 -5 2 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 B 0 1 0 10 80 mixedType 0 1 0 1 0 9 3 -4 3 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 B 0 1 0 11 60 mixedType 0 1 0 1 0 10 4 -3 4 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 B 0 1 0 12 100 mixedType 0 1 0 1 0 11 5 -2 5 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 M 0 0 1 14 100 mixedType 0 1 0 1 1 13 7 0 7 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 M 0 0 1 15 100 mixedType 0 1 0 1 1 14 8 1 8 1
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 M 0 0 1 16 100 mixedType 0 1 0 1 1 15 9 2 9 2
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 M 0 0 1 17 80 mixedType 0 1 0 1 1 16 10 3 10 3
Satsangi et al. (2020) 16 multiProbe 0 1 1 1 M 0 0 1 18 100 mixedType 0 1 0 1 1 17 11 4 11 4
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 A 1 0 0 1 40 mixedType 0 1 0 0 0 0 -9 -17 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -7 -15 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -6 -14 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 A 1 0 0 7 0 mixedType 0 1 0 0 0 6 -3 -11 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 A 1 0 0 8 0 mixedType 0 1 0 0 0 7 -2 -10 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 B 0 1 0 10 100 mixedType 0 1 0 1 0 9 0 -8 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 B 0 1 0 11 100 mixedType 0 1 0 1 0 10 1 -7 1 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 B 0 1 0 12 100 mixedType 0 1 0 1 0 11 2 -6 2 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 B 0 1 0 13 100 mixedType 0 1 0 1 0 12 3 -5 3 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 B 0 1 0 14 100 mixedType 0 1 0 1 0 13 4 -4 4 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 M 0 0 1 18 80 mixedType 0 1 0 1 1 17 8 0 8 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 M 0 0 1 19 100 mixedType 0 1 0 1 1 18 9 1 9 1
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 M 0 0 1 20 100 mixedType 0 1 0 1 1 19 10 2 10 2
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 M 0 0 1 21 100 mixedType 0 1 0 1 1 20 11 3 11 3
Satsangi et al. (2020) 16 multiProbe 0 1 1 2 M 0 0 1 22 100 mixedType 0 1 0 1 1 21 12 4 12 4
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 A 1 0 0 1 0 mixedType 0 1 0 0 0 0 -12 -20 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -9 -17 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 A 1 0 0 6 0 mixedType 0 1 0 0 0 5 -7 -15 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 A 1 0 0 10 0 mixedType 0 1 0 0 0 9 -3 -11 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 A 1 0 0 11 0 mixedType 0 1 0 0 0 10 -2 -10 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 B 0 1 0 13 100 mixedType 0 1 0 1 0 12 0 -8 0 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 B 0 1 0 14 80 mixedType 0 1 0 1 0 13 1 -7 1 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 B 0 1 0 15 100 mixedType 0 1 0 1 0 14 2 -6 2 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 B 0 1 0 16 80 mixedType 0 1 0 1 0 15 3 -5 3 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 B 0 1 0 17 100 mixedType 0 1 0 1 0 16 4 -4 4 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 M 0 0 1 21 100 mixedType 0 1 0 1 1 20 8 0 8 0
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 M 0 0 1 22 100 mixedType 0 1 0 1 1 21 9 1 9 1
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 M 0 0 1 23 100 mixedType 0 1 0 1 1 22 10 2 10 2
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 M 0 0 1 24 100 mixedType 0 1 0 1 1 23 11 3 11 3
Satsangi et al. (2020) 16 multiProbe 0 1 1 3 M 0 0 1 25 100 mixedType 0 1 0 1 1 24 12 4 12 4
Scheuermann et al. (2009) 17 multiProbe 0 1 1 1 A 1 0 0 1 28 singleType 1 0 0 0 0 0 -3 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 1 A 1 0 0 2 25 singleType 1 0 0 0 0 1 -2 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 1 A 1 0 0 3 20 singleType 1 0 0 0 0 2 -1 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 1 B 0 1 0 4 68 singleType 1 0 0 1 0 3 0 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 1 B 0 1 0 5 83 singleType 1 0 0 1 0 4 1 -4 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 1 B 0 1 0 6 90 singleType 1 0 0 1 0 5 2 -3 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 1 B 0 1 0 7 100 singleType 1 0 0 1 0 6 3 -2 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 1 M 0 0 1 9 43 singleType 1 0 0 1 1 8 5 0 5 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 1 M 0 0 1 10 83 singleType 1 0 0 1 1 9 6 1 6 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 2 A 1 0 0 1 27 singleType 1 0 0 0 0 0 -4 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 2 A 1 0 0 2 30 singleType 1 0 0 0 0 1 -3 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 2 A 1 0 0 3 30 singleType 1 0 0 0 0 2 -2 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 2 A 1 0 0 4 25 singleType 1 0 0 0 0 3 -1 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 2 B 0 1 0 5 65 singleType 1 0 0 1 0 4 0 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 2 B 0 1 0 6 88 singleType 1 0 0 1 0 5 1 -3 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 2 B 0 1 0 7 100 singleType 1 0 0 1 0 6 2 -2 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 2 M 0 0 1 9 66 singleType 1 0 0 1 1 8 4 0 4 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 2 M 0 0 1 10 98 singleType 1 0 0 1 1 9 5 1 5 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 3 A 1 0 0 1 18 singleType 1 0 0 0 0 0 -5 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 3 A 1 0 0 2 30 singleType 1 0 0 0 0 1 -4 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 3 A 1 0 0 3 35 singleType 1 0 0 0 0 2 -3 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 3 A 1 0 0 4 29 singleType 1 0 0 0 0 3 -2 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 3 A 1 0 0 5 30 singleType 1 0 0 0 0 4 -1 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 3 B 0 1 0 6 63 singleType 1 0 0 1 0 5 0 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 3 B 0 1 0 7 83 singleType 1 0 0 1 0 6 1 -2 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 3 B 0 1 0 8 100 singleType 1 0 0 1 0 7 2 -1 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 3 M 0 0 1 9 75 singleType 1 0 0 1 1 8 3 0 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 3 M 0 0 1 10 81 singleType 1 0 0 1 1 9 4 1 4 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 4 A 1 0 0 1 23 singleType 1 0 0 0 0 0 -6 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 4 A 1 0 0 2 13 singleType 1 0 0 0 0 1 -5 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 4 A 1 0 0 3 10 singleType 1 0 0 0 0 2 -4 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 4 A 1 0 0 4 25 singleType 1 0 0 0 0 3 -3 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 4 A 1 0 0 5 25 singleType 1 0 0 0 0 4 -2 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 4 A 1 0 0 6 21 singleType 1 0 0 0 0 5 -1 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 4 B 0 1 0 7 75 singleType 1 0 0 1 0 6 0 -2 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 4 B 0 1 0 8 100 singleType 1 0 0 1 0 7 1 -1 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 4 M 0 0 1 9 60 singleType 1 0 0 1 1 8 2 0 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 4 M 0 0 1 10 90 singleType 1 0 0 1 1 9 3 1 3 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 5 A 1 0 0 1 4 singleType 1 0 0 0 0 0 -3 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 5 A 1 0 0 2 18 singleType 1 0 0 0 0 1 -2 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 5 A 1 0 0 3 20 singleType 1 0 0 0 0 2 -1 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 5 B 0 1 0 4 70 singleType 1 0 0 1 0 3 0 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 5 B 0 1 0 5 83 singleType 1 0 0 1 0 4 1 -4 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 5 B 0 1 0 6 90 singleType 1 0 0 1 0 5 2 -3 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 5 B 0 1 0 7 100 singleType 1 0 0 1 0 6 3 -2 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 5 M 0 0 1 9 45 singleType 1 0 0 1 1 8 5 0 5 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 5 M 0 0 1 10 53 singleType 1 0 0 1 1 9 6 1 6 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 6 A 1 0 0 1 28 singleType 1 0 0 0 0 0 -4 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 6 A 1 0 0 2 30 singleType 1 0 0 0 0 1 -3 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 6 A 1 0 0 3 40 singleType 1 0 0 0 0 2 -2 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 6 A 1 0 0 4 40 singleType 1 0 0 0 0 3 -1 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 6 B 0 1 0 5 65 singleType 1 0 0 1 0 4 0 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 6 B 0 1 0 6 100 singleType 1 0 0 1 0 5 1 -3 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 6 B 0 1 0 7 100 singleType 1 0 0 1 0 6 2 -2 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 6 M 0 0 1 9 73 singleType 1 0 0 1 1 8 4 0 4 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 6 M 0 0 1 10 83 singleType 1 0 0 1 1 9 5 1 5 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 7 A 1 0 0 1 26 singleType 1 0 0 0 0 0 -5 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 7 A 1 0 0 2 17 singleType 1 0 0 0 0 1 -4 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 7 A 1 0 0 3 2 singleType 1 0 0 0 0 2 -3 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 7 A 1 0 0 4 18 singleType 1 0 0 0 0 3 -2 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 7 A 1 0 0 5 10 singleType 1 0 0 0 0 4 -1 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 7 B 0 1 0 6 37 singleType 1 0 0 1 0 5 0 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 7 B 0 1 0 7 55 singleType 1 0 0 1 0 6 1 -2 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 7 B 0 1 0 8 88 singleType 1 0 0 1 0 7 2 -1 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 7 M 0 0 1 9 35 singleType 1 0 0 1 1 8 3 0 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 7 M 0 0 1 10 63 singleType 1 0 0 1 1 9 4 1 4 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 8 A 1 0 0 1 17 singleType 1 0 0 0 0 0 -6 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 8 A 1 0 0 2 11 singleType 1 0 0 0 0 1 -5 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 8 A 1 0 0 3 12 singleType 1 0 0 0 0 2 -4 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 8 A 1 0 0 4 10 singleType 1 0 0 0 0 3 -3 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 8 A 1 0 0 5 27 singleType 1 0 0 0 0 4 -2 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 8 A 1 0 0 6 23 singleType 1 0 0 0 0 5 -1 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 8 B 0 1 0 7 50 singleType 1 0 0 1 0 6 0 -2 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 8 B 0 1 0 8 92 singleType 1 0 0 1 0 7 1 -1 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 8 M 0 0 1 9 33 singleType 1 0 0 1 1 8 2 0 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 8 M 0 0 1 10 51 singleType 1 0 0 1 1 9 3 1 3 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 9 A 1 0 0 1 6 singleType 1 0 0 0 0 0 -3 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 9 A 1 0 0 2 10 singleType 1 0 0 0 0 1 -2 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 9 A 1 0 0 3 8 singleType 1 0 0 0 0 2 -1 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 9 B 0 1 0 4 23 singleType 1 0 0 1 0 3 0 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 9 B 0 1 0 5 65 singleType 1 0 0 1 0 4 1 -4 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 9 B 0 1 0 6 80 singleType 1 0 0 1 0 5 2 -3 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 9 B 0 1 0 7 85 singleType 1 0 0 1 0 6 3 -2 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 9 M 0 0 1 9 60 singleType 1 0 0 1 1 8 5 0 5 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 9 M 0 0 1 10 68 singleType 1 0 0 1 1 9 6 1 6 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 10 A 1 0 0 1 6 singleType 1 0 0 0 0 0 -5 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 10 A 1 0 0 2 0 singleType 1 0 0 0 0 1 -4 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 10 A 1 0 0 3 10 singleType 1 0 0 0 0 2 -3 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 10 A 1 0 0 4 10 singleType 1 0 0 0 0 3 -2 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 10 A 1 0 0 5 0 singleType 1 0 0 0 0 4 -1 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 10 B 0 1 0 6 20 singleType 1 0 0 1 0 5 0 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 10 B 0 1 0 7 70 singleType 1 0 0 1 0 6 1 -2 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 10 B 0 1 0 8 77 singleType 1 0 0 1 0 7 2 -1 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 10 M 0 0 1 9 60 singleType 1 0 0 1 1 8 3 0 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 10 M 0 0 1 10 55 singleType 1 0 0 1 1 9 4 1 4 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 11 A 1 0 0 1 19 singleType 1 0 0 0 0 0 -6 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 11 A 1 0 0 2 20 singleType 1 0 0 0 0 1 -5 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 11 A 1 0 0 3 10 singleType 1 0 0 0 0 2 -4 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 11 A 1 0 0 4 15 singleType 1 0 0 0 0 3 -3 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 11 A 1 0 0 5 15 singleType 1 0 0 0 0 4 -2 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 11 A 1 0 0 6 16 singleType 1 0 0 0 0 5 -1 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 11 B 0 1 0 7 60 singleType 1 0 0 1 0 6 0 -2 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 11 B 0 1 0 8 98 singleType 1 0 0 1 0 7 1 -1 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 11 M 0 0 1 9 60 singleType 1 0 0 1 1 8 2 0 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 11 M 0 0 1 10 83 singleType 1 0 0 1 1 9 3 1 3 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 12 A 1 0 0 1 30 singleType 1 0 0 0 0 0 -4 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 12 A 1 0 0 2 40 singleType 1 0 0 0 0 1 -3 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 12 A 1 0 0 3 33 singleType 1 0 0 0 0 2 -2 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 12 A 1 0 0 4 43 singleType 1 0 0 0 0 3 -1 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 12 B 0 1 0 5 60 singleType 1 0 0 1 0 4 0 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 12 B 0 1 0 6 87 singleType 1 0 0 1 0 5 1 -3 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 12 B 0 1 0 7 100 singleType 1 0 0 1 0 6 2 -2 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 12 M 0 0 1 9 90 singleType 1 0 0 1 1 8 4 0 4 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 12 M 0 0 1 10 90 singleType 1 0 0 1 1 9 5 1 5 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 13 A 1 0 0 1 18 singleType 1 0 0 0 0 0 -5 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 13 A 1 0 0 2 9 singleType 1 0 0 0 0 1 -4 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 13 A 1 0 0 3 10 singleType 1 0 0 0 0 2 -3 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 13 A 1 0 0 4 13 singleType 1 0 0 0 0 3 -2 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 13 A 1 0 0 5 2 singleType 1 0 0 0 0 4 -1 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 13 B 0 1 0 6 63 singleType 1 0 0 1 0 5 0 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 13 B 0 1 0 7 80 singleType 1 0 0 1 0 6 1 -2 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 13 B 0 1 0 8 89 singleType 1 0 0 1 0 7 2 -1 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 13 M 0 0 1 9 40 singleType 1 0 0 1 1 8 3 0 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 13 M 0 0 1 10 70 singleType 1 0 0 1 1 9 4 1 4 1
Scheuermann et al. (2009) 17 multiProbe 0 1 1 14 A 1 0 0 1 25 singleType 1 0 0 0 0 0 -6 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 14 A 1 0 0 2 21 singleType 1 0 0 0 0 1 -5 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 14 A 1 0 0 3 30 singleType 1 0 0 0 0 2 -4 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 14 A 1 0 0 4 40 singleType 1 0 0 0 0 3 -3 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 14 A 1 0 0 5 33 singleType 1 0 0 0 0 4 -2 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 14 A 1 0 0 6 30 singleType 1 0 0 0 0 5 -1 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 14 B 0 1 0 7 67 singleType 1 0 0 1 0 6 0 -2 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 14 B 0 1 0 8 99 singleType 1 0 0 1 0 7 1 -1 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 14 M 0 0 1 9 99 singleType 1 0 0 1 1 8 2 0 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 1 14 M 0 0 1 10 80 singleType 1 0 0 1 1 9 3 1 3 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 1 A 1 0 0 1 20 generalization 0 0 1 0 0 0 -3 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 1 A 1 0 0 2 12 generalization 0 0 1 0 0 1 -2 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 1 A 1 0 0 3 13 generalization 0 0 1 0 0 2 -1 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 1 B 0 1 0 4 20 generalization 0 0 1 1 0 3 0 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 1 B 0 1 0 5 55 generalization 0 0 1 1 0 4 1 -4 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 1 B 0 1 0 6 70 generalization 0 0 1 1 0 5 2 -3 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 1 B 0 1 0 7 80 generalization 0 0 1 1 0 6 3 -2 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 1 M 0 0 1 9 40 generalization 0 0 1 1 1 8 5 0 5 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 1 M 0 0 1 10 80 generalization 0 0 1 1 1 9 6 1 6 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 2 A 1 0 0 1 20 generalization 0 0 1 0 0 0 -4 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 2 A 1 0 0 2 25 generalization 0 0 1 0 0 1 -3 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 2 A 1 0 0 3 0 generalization 0 0 1 0 0 2 -2 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 2 A 1 0 0 4 0 generalization 0 0 1 0 0 3 -1 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 2 B 0 1 0 5 5 generalization 0 0 1 1 0 4 0 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 2 B 0 1 0 6 47 generalization 0 0 1 1 0 5 1 -3 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 2 B 0 1 0 7 85 generalization 0 0 1 1 0 6 2 -2 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 2 M 0 0 1 9 60 generalization 0 0 1 1 1 8 4 0 4 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 2 M 0 0 1 10 80 generalization 0 0 1 1 1 9 5 1 5 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 3 A 1 0 0 1 12 generalization 0 0 1 0 0 0 -5 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 3 A 1 0 0 2 20 generalization 0 0 1 0 0 1 -4 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 3 A 1 0 0 3 40 generalization 0 0 1 0 0 2 -3 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 3 A 1 0 0 4 25 generalization 0 0 1 0 0 3 -2 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 3 A 1 0 0 5 19 generalization 0 0 1 0 0 4 -1 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 3 B 0 1 0 6 54 generalization 0 0 1 1 0 5 0 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 3 B 0 1 0 7 67 generalization 0 0 1 1 0 6 1 -2 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 3 B 0 1 0 8 73 generalization 0 0 1 1 0 7 2 -1 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 3 M 0 0 1 9 45 generalization 0 0 1 1 1 8 3 0 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 3 M 0 0 1 10 67 generalization 0 0 1 1 1 9 4 1 4 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 4 A 1 0 0 1 5 generalization 0 0 1 0 0 0 -6 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 4 A 1 0 0 2 0 generalization 0 0 1 0 0 1 -5 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 4 A 1 0 0 3 0 generalization 0 0 1 0 0 2 -4 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 4 A 1 0 0 4 13 generalization 0 0 1 0 0 3 -3 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 4 A 1 0 0 5 0 generalization 0 0 1 0 0 4 -2 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 4 A 1 0 0 6 0 generalization 0 0 1 0 0 5 -1 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 4 B 0 1 0 7 0 generalization 0 0 1 1 0 6 0 -2 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 4 B 0 1 0 8 94 generalization 0 0 1 1 0 7 1 -1 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 4 M 0 0 1 9 20 generalization 0 0 1 1 1 8 2 0 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 4 M 0 0 1 10 25 generalization 0 0 1 1 1 9 3 1 3 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 5 A 1 0 0 1 2 generalization 0 0 1 0 0 0 -3 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 5 A 1 0 0 2 21 generalization 0 0 1 0 0 1 -2 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 5 A 1 0 0 3 13 generalization 0 0 1 0 0 2 -1 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 5 B 0 1 0 4 45 generalization 0 0 1 1 0 3 0 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 5 B 0 1 0 5 55 generalization 0 0 1 1 0 4 1 -4 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 5 B 0 1 0 6 35 generalization 0 0 1 1 0 5 2 -3 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 5 B 0 1 0 7 80 generalization 0 0 1 1 0 6 3 -2 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 5 M 0 0 1 9 20 generalization 0 0 1 1 1 8 5 0 5 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 5 M 0 0 1 10 83 generalization 0 0 1 1 1 9 6 1 6 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 6 A 1 0 0 1 24 generalization 0 0 1 0 0 0 -4 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 6 A 1 0 0 2 26 generalization 0 0 1 0 0 1 -3 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 6 A 1 0 0 3 26 generalization 0 0 1 0 0 2 -2 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 6 A 1 0 0 4 34 generalization 0 0 1 0 0 3 -1 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 6 B 0 1 0 5 34 generalization 0 0 1 1 0 4 0 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 6 B 0 1 0 6 80 generalization 0 0 1 1 0 5 1 -3 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 6 B 0 1 0 7 80 generalization 0 0 1 1 0 6 2 -2 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 6 M 0 0 1 9 60 generalization 0 0 1 1 1 8 4 0 4 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 6 M 0 0 1 10 80 generalization 0 0 1 1 1 9 5 1 5 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 7 A 1 0 0 1 20 generalization 0 0 1 0 0 0 -5 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 7 A 1 0 0 2 10 generalization 0 0 1 0 0 1 -4 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 7 A 1 0 0 3 0 generalization 0 0 1 0 0 2 -3 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 7 A 1 0 0 4 12 generalization 0 0 1 0 0 3 -2 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 7 A 1 0 0 5 5 generalization 0 0 1 0 0 4 -1 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 7 B 0 1 0 6 20 generalization 0 0 1 1 0 5 0 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 7 B 0 1 0 7 13 generalization 0 0 1 1 0 6 1 -2 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 7 B 0 1 0 8 65 generalization 0 0 1 1 0 7 2 -1 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 7 M 0 0 1 9 20 generalization 0 0 1 1 1 8 3 0 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 7 M 0 0 1 10 52 generalization 0 0 1 1 1 9 4 1 4 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 8 A 1 0 0 1 11 generalization 0 0 1 0 0 0 -6 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 8 A 1 0 0 2 20 generalization 0 0 1 0 0 1 -5 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 8 A 1 0 0 3 20 generalization 0 0 1 0 0 2 -4 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 8 A 1 0 0 4 0 generalization 0 0 1 0 0 3 -3 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 8 A 1 0 0 5 20 generalization 0 0 1 0 0 4 -2 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 8 A 1 0 0 6 20 generalization 0 0 1 0 0 5 -1 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 8 B 0 1 0 7 27 generalization 0 0 1 1 0 6 0 -2 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 8 B 0 1 0 8 27 generalization 0 0 1 1 0 7 1 -1 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 8 M 0 0 1 9 20 generalization 0 0 1 1 1 8 2 0 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 8 M 0 0 1 10 39 generalization 0 0 1 1 1 9 3 1 3 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 9 A 1 0 0 1 0 generalization 0 0 1 0 0 0 -3 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 9 A 1 0 0 2 5 generalization 0 0 1 0 0 1 -2 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 9 A 1 0 0 3 0 generalization 0 0 1 0 0 2 -1 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 9 B 0 1 0 4 13 generalization 0 0 1 1 0 3 0 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 9 B 0 1 0 5 45 generalization 0 0 1 1 0 4 1 -4 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 9 B 0 1 0 6 13 generalization 0 0 1 1 0 5 2 -3 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 9 B 0 1 0 7 45 generalization 0 0 1 1 0 6 3 -2 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 9 M 0 0 1 9 40 generalization 0 0 1 1 1 8 5 0 5 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 9 M 0 0 1 10 53 generalization 0 0 1 1 1 9 6 1 6 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 10 A 1 0 0 1 0 generalization 0 0 1 0 0 0 -5 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 10 A 1 0 0 2 0 generalization 0 0 1 0 0 1 -4 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 10 A 1 0 0 3 0 generalization 0 0 1 0 0 2 -3 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 10 A 1 0 0 4 0 generalization 0 0 1 0 0 3 -2 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 10 A 1 0 0 5 0 generalization 0 0 1 0 0 4 -1 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 10 B 0 1 0 6 5 generalization 0 0 1 1 0 5 0 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 10 B 0 1 0 7 20 generalization 0 0 1 1 0 6 1 -2 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 10 B 0 1 0 8 34 generalization 0 0 1 1 0 7 2 -1 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 10 M 0 0 1 9 25 generalization 0 0 1 1 1 8 3 0 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 10 M 0 0 1 10 34 generalization 0 0 1 1 1 9 4 1 4 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 11 A 1 0 0 1 20 generalization 0 0 1 0 0 0 -6 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 11 A 1 0 0 2 0 generalization 0 0 1 0 0 1 -5 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 11 A 1 0 0 3 10 generalization 0 0 1 0 0 2 -4 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 11 A 1 0 0 4 20 generalization 0 0 1 0 0 3 -3 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 11 A 1 0 0 5 20 generalization 0 0 1 0 0 4 -2 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 11 A 1 0 0 6 13 generalization 0 0 1 0 0 5 -1 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 11 B 0 1 0 7 0 generalization 0 0 1 1 0 6 0 -2 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 11 B 0 1 0 8 50 generalization 0 0 1 1 0 7 1 -1 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 11 M 0 0 1 9 20 generalization 0 0 1 1 1 8 2 0 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 11 M 0 0 1 10 80 generalization 0 0 1 1 1 9 3 1 3 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 12 A 1 0 0 1 27 generalization 0 0 1 0 0 0 -4 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 12 A 1 0 0 2 27 generalization 0 0 1 0 0 1 -3 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 12 A 1 0 0 3 20 generalization 0 0 1 0 0 2 -2 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 12 A 1 0 0 4 33 generalization 0 0 1 0 0 3 -1 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 12 B 0 1 0 5 26 generalization 0 0 1 1 0 4 0 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 12 B 0 1 0 6 80 generalization 0 0 1 1 0 5 1 -3 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 12 B 0 1 0 7 98 generalization 0 0 1 1 0 6 2 -2 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 12 M 0 0 1 9 73 generalization 0 0 1 1 1 8 4 0 4 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 12 M 0 0 1 10 40 generalization 0 0 1 1 1 9 5 1 5 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 13 A 1 0 0 1 13 generalization 0 0 1 0 0 0 -5 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 13 A 1 0 0 2 5 generalization 0 0 1 0 0 1 -4 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 13 A 1 0 0 3 0 generalization 0 0 1 0 0 2 -3 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 13 A 1 0 0 4 15 generalization 0 0 1 0 0 3 -2 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 13 A 1 0 0 5 0 generalization 0 0 1 0 0 4 -1 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 13 B 0 1 0 6 25 generalization 0 0 1 1 0 5 0 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 13 B 0 1 0 7 60 generalization 0 0 1 1 0 6 1 -2 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 13 B 0 1 0 8 68 generalization 0 0 1 1 0 7 2 -1 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 13 M 0 0 1 9 40 generalization 0 0 1 1 1 8 3 0 3 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 13 M 0 0 1 10 0 generalization 0 0 1 1 1 9 4 1 4 1
Scheuermann et al. (2009) 17 multiProbe 0 1 2 14 A 1 0 0 1 13 generalization 0 0 1 0 0 0 -6 -8 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 14 A 1 0 0 2 19 generalization 0 0 1 0 0 1 -5 -7 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 14 A 1 0 0 3 15 generalization 0 0 1 0 0 2 -4 -6 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 14 A 1 0 0 4 15 generalization 0 0 1 0 0 3 -3 -5 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 14 A 1 0 0 5 28 generalization 0 0 1 0 0 4 -2 -4 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 14 A 1 0 0 6 25 generalization 0 0 1 0 0 5 -1 -3 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 14 B 0 1 0 7 48 generalization 0 0 1 1 0 6 0 -2 0 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 14 B 0 1 0 8 78 generalization 0 0 1 1 0 7 1 -1 1 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 14 M 0 0 1 9 93 generalization 0 0 1 1 1 8 2 0 2 0
Scheuermann et al. (2009) 17 multiProbe 0 1 2 14 M 0 0 1 10 80 generalization 0 0 1 1 1 9 3 1 3 1
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 A 1 0 0 1 0 generalization 0 0 1 0 0 0 -6 -13 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 A 1 0 0 2 3 mixedType 0 1 0 0 0 1 -5 -12 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -4 -11 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -3 -10 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -2 -9 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 A 1 0 0 6 5 mixedType 0 1 0 0 0 5 -1 -8 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 B 0 1 0 7 28 mixedType 0 1 0 1 0 6 0 -7 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 B 0 1 0 8 60 mixedType 0 1 0 1 0 7 1 -6 1 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 B 0 1 0 9 83 mixedType 0 1 0 1 0 8 2 -5 2 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 B 0 1 0 10 95 mixedType 0 1 0 1 0 9 3 -4 3 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 B 0 1 0 11 100 mixedType 0 1 0 1 0 10 4 -3 4 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 B 0 1 0 12 95 mixedType 0 1 0 1 0 11 5 -2 5 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 M 0 0 1 14 92 mixedType 0 1 0 1 1 13 7 0 7 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 M 0 0 1 16 89 mixedType 0 1 0 1 1 15 9 2 9 2
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 M 0 0 1 18 25 generalization 0 0 1 1 1 17 11 4 11 4
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 M 0 0 1 20 50 generalization 0 0 1 1 1 19 13 6 13 6
Sharp & Dennis (2017) 18 multiProbe 0 1 1 1 M 0 0 1 22 50 generalization 0 0 1 1 1 21 15 8 15 8
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 A 1 0 0 1 0 generalization 0 0 1 0 0 0 -9 -16 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 A 1 0 0 2 0 mixedType 0 1 0 0 0 1 -8 -15 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -7 -14 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -6 -13 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -5 -12 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 A 1 0 0 6 0 mixedType 0 1 0 0 0 5 -4 -11 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 A 1 0 0 7 0 mixedType 0 1 0 0 0 6 -3 -10 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 A 1 0 0 9 0 mixedType 0 1 0 0 0 8 -1 -8 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 B 0 1 0 10 45 mixedType 0 1 0 1 0 9 0 -7 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 B 0 1 0 11 90 mixedType 0 1 0 1 0 10 1 -6 1 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 B 0 1 0 12 94 mixedType 0 1 0 1 0 11 2 -5 2 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 B 0 1 0 13 95 mixedType 0 1 0 1 0 12 3 -4 3 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 B 0 1 0 14 99 mixedType 0 1 0 1 0 13 4 -3 4 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 B 0 1 0 15 100 mixedType 0 1 0 1 0 14 5 -2 5 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 M 0 0 1 17 95 mixedType 0 1 0 1 1 16 7 0 7 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 M 0 0 1 19 99 mixedType 0 1 0 1 1 18 9 2 9 2
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 M 0 0 1 21 65 generalization 0 0 1 1 1 20 11 4 11 4
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 M 0 0 1 23 50 generalization 0 0 1 1 1 22 13 6 13 6
Sharp & Dennis (2017) 18 multiProbe 0 1 1 2 M 0 0 1 25 65 generalization 0 0 1 1 1 24 15 8 15 8
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 A 1 0 0 1 0 generalization 0 0 1 0 0 0 -12 -19 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 A 1 0 0 2 0 mixedType 0 1 0 0 0 1 -11 -18 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 A 1 0 0 3 2 mixedType 0 1 0 0 0 2 -10 -17 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 A 1 0 0 4 0 mixedType 0 1 0 0 0 3 -9 -16 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -8 -15 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 A 1 0 0 6 2 mixedType 0 1 0 0 0 5 -7 -14 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 A 1 0 0 7 0 mixedType 0 1 0 0 0 6 -6 -13 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 A 1 0 0 9 0 mixedType 0 1 0 0 0 8 -4 -11 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 A 1 0 0 12 0 mixedType 0 1 0 0 0 11 -1 -8 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 B 0 1 0 13 37 mixedType 0 1 0 1 0 12 0 -7 0 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 B 0 1 0 14 43 mixedType 0 1 0 1 0 13 1 -6 1 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 B 0 1 0 15 54 mixedType 0 1 0 1 0 14 2 -5 2 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 B 0 1 0 16 70 mixedType 0 1 0 1 0 15 3 -4 3 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 B 0 1 0 17 93 mixedType 0 1 0 1 0 16 4 -3 4 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 B 0 1 0 18 98 mixedType 0 1 0 1 0 17 5 -2 5 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 M 0 0 1 20 94 mixedType 0 1 0 1 1 19 7 0 7 0
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 M 0 0 1 22 95 mixedType 0 1 0 1 1 21 9 2 9 2
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 M 0 0 1 24 63 generalization 0 0 1 1 1 23 11 4 11 4
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 M 0 0 1 26 75 generalization 0 0 1 1 1 25 13 6 13 6
Sharp & Dennis (2017) 18 multiProbe 0 1 1 3 M 0 0 1 28 100 generalization 0 0 1 1 1 27 15 8 15 8
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 A 1 0 0 1 20 mixedType 0 1 0 0 0 0 -3 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 A 1 0 0 2 20 mixedType 0 1 0 0 0 1 -2 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -1 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 B 0 1 0 4 40 mixedType 0 1 0 1 0 3 0 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 B 0 1 0 5 60 mixedType 0 1 0 1 0 4 1 0 1 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 B 0 1 0 6 40 mixedType 0 1 0 1 0 5 2 0 2 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 B 0 1 0 7 60 mixedType 0 1 0 1 0 6 3 0 3 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 B 0 1 0 8 20 mixedType 0 1 0 1 0 7 4 0 4 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 B 0 1 0 9 20 mixedType 0 1 0 1 0 8 5 0 5 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 B 0 1 0 10 0 mixedType 0 1 0 1 0 9 6 0 6 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 B 0 1 0 11 60 mixedType 0 1 0 1 0 10 7 0 7 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 B 0 1 0 12 60 mixedType 0 1 0 1 0 11 8 0 8 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 1 B 0 1 0 13 60 mixedType 0 1 0 1 0 12 9 0 9 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 A 1 0 0 1 40 mixedType 0 1 0 0 0 0 -6 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 A 1 0 0 4 40 mixedType 0 1 0 0 0 3 -3 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 A 1 0 0 5 0 mixedType 0 1 0 0 0 4 -2 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 A 1 0 0 6 40 mixedType 0 1 0 0 0 5 -1 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 B 0 1 0 7 0 mixedType 0 1 0 1 0 6 0 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 B 0 1 0 8 40 mixedType 0 1 0 1 0 7 1 0 1 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 B 0 1 0 9 40 mixedType 0 1 0 1 0 8 2 0 2 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 B 0 1 0 11 40 mixedType 0 1 0 1 0 10 4 0 4 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 B 0 1 0 12 60 mixedType 0 1 0 1 0 11 5 0 5 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 B 0 1 0 13 100 mixedType 0 1 0 1 0 12 6 0 6 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 B 0 1 0 14 80 mixedType 0 1 0 1 0 13 7 0 7 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 B 0 1 0 15 100 mixedType 0 1 0 1 0 14 8 0 8 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 2 B 0 1 0 16 100 mixedType 0 1 0 1 0 15 9 0 9 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 3 A 1 0 0 3 0 mixedType 0 1 0 0 0 0 -9 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 3 A 1 0 0 7 40 mixedType 0 1 0 0 0 4 -5 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 3 A 1 0 0 11 0 mixedType 0 1 0 0 0 8 -1 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 3 B 0 1 0 12 100 mixedType 0 1 0 1 0 9 0 0 0 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 3 B 0 1 0 13 80 mixedType 0 1 0 1 0 10 1 0 1 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 3 B 0 1 0 14 80 mixedType 0 1 0 1 0 11 2 0 2 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 3 B 0 1 0 15 60 mixedType 0 1 0 1 0 12 3 0 3 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 3 B 0 1 0 16 100 mixedType 0 1 0 1 0 13 4 0 4 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 3 B 0 1 0 17 60 mixedType 0 1 0 1 0 14 5 0 5 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 3 B 0 1 0 18 100 mixedType 0 1 0 1 0 15 6 0 6 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 3 B 0 1 0 19 80 mixedType 0 1 0 1 0 16 7 0 7 0
Shin & Bryant (2017) 19 multiProbe 0 1 1 3 B 0 1 0 20 80 mixedType 0 1 0 1 0 17 8 0 8 0
van Garderen (2007) 20 multiProbe 0 1 1 1 A 1 0 0 1 25 mixedType 0 1 0 0 0 0 -19 -46 0 0
van Garderen (2007) 20 multiProbe 0 1 1 1 A 1 0 0 2 37 mixedType 0 1 0 0 0 1 -18 -45 0 0
van Garderen (2007) 20 multiProbe 0 1 1 1 A 1 0 0 4 25 mixedType 0 1 0 0 0 3 -16 -43 0 0
van Garderen (2007) 20 multiProbe 0 1 1 1 A 1 0 0 11 50 mixedType 0 1 0 0 0 10 -9 -36 0 0
van Garderen (2007) 20 multiProbe 0 1 1 1 B 0 1 0 20 63 singleType 1 0 0 1 0 19 0 -27 0 0
van Garderen (2007) 20 multiProbe 0 1 1 1 B 0 1 0 22 63 singleType 1 0 0 1 0 21 2 -25 2 0
van Garderen (2007) 20 multiProbe 0 1 1 1 B 0 1 0 27 87 singleType 1 0 0 1 0 26 7 -20 7 0
van Garderen (2007) 20 multiProbe 0 1 1 1 B 0 1 0 28 75 singleType 1 0 0 1 0 27 8 -19 8 0
van Garderen (2007) 20 multiProbe 0 1 1 1 B 0 1 0 29 100 singleType 1 0 0 1 0 28 9 -18 9 0
van Garderen (2007) 20 multiProbe 0 1 1 1 B 0 1 0 30 63 mixedType 0 1 0 1 0 29 10 -17 10 0
van Garderen (2007) 20 multiProbe 0 1 1 1 B 0 1 0 36 75 singleType 1 0 0 1 0 35 16 -11 16 0
van Garderen (2007) 20 multiProbe 0 1 1 1 B 0 1 0 38 75 singleType 1 0 0 1 0 37 18 -9 18 0
van Garderen (2007) 20 multiProbe 0 1 1 1 B 0 1 0 39 75 singleType 1 0 0 1 0 38 19 -8 19 0
van Garderen (2007) 20 multiProbe 0 1 1 1 B 0 1 0 41 75 mixedType 0 1 0 1 0 40 21 -6 21 0
van Garderen (2007) 20 multiProbe 0 1 1 1 M 0 0 1 47 87 mixedType 0 1 0 1 1 46 27 0 27 0
van Garderen (2007) 20 multiProbe 0 1 1 1 M 0 0 1 60 75 mixedType 0 1 0 1 1 59 40 13 40 13
van Garderen (2007) 20 multiProbe 0 1 1 2 A 1 0 0 1 25 mixedType 0 1 0 0 0 0 -35 -58 0 0
van Garderen (2007) 20 multiProbe 0 1 1 2 A 1 0 0 10 63 mixedType 0 1 0 0 0 9 -26 -49 0 0
van Garderen (2007) 20 multiProbe 0 1 1 2 A 1 0 0 20 50 mixedType 0 1 0 0 0 19 -16 -39 0 0
van Garderen (2007) 20 multiProbe 0 1 1 2 A 1 0 0 21 37 mixedType 0 1 0 0 0 20 -15 -38 0 0
van Garderen (2007) 20 multiProbe 0 1 1 2 A 1 0 0 29 62 mixedType 0 1 0 0 0 28 -7 -30 0 0
van Garderen (2007) 20 multiProbe 0 1 1 2 B 0 1 0 36 75 singleType 1 0 0 1 0 35 0 -23 0 0
van Garderen (2007) 20 multiProbe 0 1 1 2 B 0 1 0 38 88 singleType 1 0 0 1 0 37 2 -21 2 0
van Garderen (2007) 20 multiProbe 0 1 1 2 B 0 1 0 39 88 singleType 1 0 0 1 0 38 3 -20 3 0
van Garderen (2007) 20 multiProbe 0 1 1 2 B 0 1 0 40 37 mixedType 0 1 0 1 0 39 4 -19 4 0
van Garderen (2007) 20 multiProbe 0 1 1 2 B 0 1 0 48 88 singleType 1 0 0 1 0 47 12 -11 12 0
van Garderen (2007) 20 multiProbe 0 1 1 2 B 0 1 0 49 88 singleType 1 0 0 1 0 48 13 -10 13 0
van Garderen (2007) 20 multiProbe 0 1 1 2 B 0 1 0 50 75 singleType 1 0 0 1 0 49 14 -9 14 0
van Garderen (2007) 20 multiProbe 0 1 1 2 B 0 1 0 52 88 mixedType 0 1 0 1 0 51 16 -7 16 0
van Garderen (2007) 20 multiProbe 0 1 1 2 M 0 0 1 59 75 mixedType 0 1 0 1 1 58 23 0 23 0
van Garderen (2007) 20 multiProbe 0 1 1 2 M 0 0 1 69 75 mixedType 0 1 0 1 1 68 33 10 33 10
van Garderen (2007) 20 multiProbe 0 1 1 3 A 1 0 0 2 25 mixedType 0 1 0 0 0 0 -51 0 0 0
van Garderen (2007) 20 multiProbe 0 1 1 3 A 1 0 0 12 51 mixedType 0 1 0 0 0 10 -41 0 0 0
van Garderen (2007) 20 multiProbe 0 1 1 3 A 1 0 0 30 25 mixedType 0 1 0 0 0 28 -23 0 0 0
van Garderen (2007) 20 multiProbe 0 1 1 3 A 1 0 0 37 63 mixedType 0 1 0 0 0 35 -16 0 0 0
van Garderen (2007) 20 multiProbe 0 1 1 3 A 1 0 0 38 38 mixedType 0 1 0 0 0 36 -15 0 0 0
van Garderen (2007) 20 multiProbe 0 1 1 3 A 1 0 0 43 25 mixedType 0 1 0 0 0 41 -10 0 0 0
van Garderen (2007) 20 multiProbe 0 1 1 3 B 0 1 0 53 76 singleType 1 0 0 1 0 51 0 0 0 0
van Garderen (2007) 20 multiProbe 0 1 1 3 B 0 1 0 54 63 singleType 1 0 0 1 0 52 1 0 1 0
van Garderen (2007) 20 multiProbe 0 1 1 3 B 0 1 0 55 88 singleType 1 0 0 1 0 53 2 0 2 0
van Garderen (2007) 20 multiProbe 0 1 1 3 B 0 1 0 56 76 singleType 1 0 0 1 0 54 3 0 3 0
van Garderen (2007) 20 multiProbe 0 1 1 3 B 0 1 0 58 76 singleType 1 0 0 1 0 56 5 0 5 0
van Garderen (2007) 20 multiProbe 0 1 1 3 B 0 1 0 60 63 mixedType 0 1 0 1 0 58 7 0 7 0
van Garderen (2007) 20 multiProbe 0 1 1 3 B 0 1 0 65 75 singleType 1 0 0 1 0 63 12 0 12 0
van Garderen (2007) 20 multiProbe 0 1 1 3 B 0 1 0 66 88 singleType 1 0 0 1 0 64 13 0 13 0
van Garderen (2007) 20 multiProbe 0 1 1 3 B 0 1 0 68 75 singleType 1 0 0 1 0 66 15 0 15 0
van Garderen (2007) 20 multiProbe 0 1 1 3 B 0 1 0 70 75 mixedType 0 1 0 1 0 68 17 0 17 0
Yang & Xin (2022) 21 multiProbe 0 1 1 1 A 1 0 0 1 18 mixedType 0 1 0 0 0 0 -4 -10 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 1 A 1 0 0 2 0 mixedType 0 1 0 0 0 1 -3 -9 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 1 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -2 -8 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 1 A 1 0 0 4 24 generalization 0 0 1 0 0 3 -1 -7 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 1 B 0 1 0 5 42 mixedType 0 1 0 1 0 4 0 -6 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 1 B 0 1 0 6 66 mixedType 0 1 0 1 0 5 1 -5 1 0
Yang & Xin (2022) 21 multiProbe 0 1 1 1 B 0 1 0 7 82 mixedType 0 1 0 1 0 6 2 -4 2 0
Yang & Xin (2022) 21 multiProbe 0 1 1 1 B 0 1 0 8 81 mixedType 0 1 0 1 0 7 3 -3 3 0
Yang & Xin (2022) 21 multiProbe 0 1 1 1 B 0 1 0 9 100 mixedType 0 1 0 1 0 8 4 -2 4 0
Yang & Xin (2022) 21 multiProbe 0 1 1 1 B 0 1 0 10 100 mixedType 0 1 0 1 0 9 5 -1 5 0
Yang & Xin (2022) 21 multiProbe 0 1 1 1 M 0 0 1 11 66 mixedType 0 1 0 1 1 10 6 0 6 0
Yang & Xin (2022) 21 multiProbe 0 1 1 1 M 0 0 1 12 82 mixedType 0 1 0 1 1 11 7 1 7 1
Yang & Xin (2022) 21 multiProbe 0 1 1 1 M 0 0 1 13 82 mixedType 0 1 0 1 1 12 8 2 8 2
Yang & Xin (2022) 21 multiProbe 0 1 1 1 M 0 0 1 14 72 generalization 0 0 1 1 1 13 9 3 9 3
Yang & Xin (2022) 21 multiProbe 0 1 1 1 M 0 0 1 15 66 mixedType 0 1 0 1 1 14 10 4 10 4
Yang & Xin (2022) 21 multiProbe 0 1 1 1 M 0 0 1 16 100 mixedType 0 1 0 1 1 15 11 5 11 5
Yang & Xin (2022) 21 multiProbe 0 1 1 1 M 0 0 1 17 82 mixedType 0 1 0 1 1 16 12 6 12 6
Yang & Xin (2022) 21 multiProbe 0 1 1 1 M 0 0 1 18 60 generalization 0 0 1 1 1 17 13 7 13 7
Yang & Xin (2022) 21 multiProbe 0 1 1 2 A 1 0 0 1 15 mixedType 0 1 0 0 0 0 -5 -11 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 2 A 1 0 0 3 32 mixedType 0 1 0 0 0 2 -3 -9 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 2 A 1 0 0 4 16 mixedType 0 1 0 0 0 3 -2 -8 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 2 A 1 0 0 5 24 generalization 0 0 1 0 0 4 -1 -7 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 2 B 0 1 0 6 66 mixedType 0 1 0 1 0 5 0 -6 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 2 B 0 1 0 7 100 mixedType 0 1 0 1 0 6 1 -5 1 0
Yang & Xin (2022) 21 multiProbe 0 1 1 2 B 0 1 0 8 83 mixedType 0 1 0 1 0 7 2 -4 2 0
Yang & Xin (2022) 21 multiProbe 0 1 1 2 B 0 1 0 9 100 mixedType 0 1 0 1 0 8 3 -3 3 0
Yang & Xin (2022) 21 multiProbe 0 1 1 2 B 0 1 0 10 84 mixedType 0 1 0 1 0 9 4 -2 4 0
Yang & Xin (2022) 21 multiProbe 0 1 1 2 B 0 1 0 11 100 mixedType 0 1 0 1 0 10 5 -1 5 0
Yang & Xin (2022) 21 multiProbe 0 1 1 2 M 0 0 1 12 100 mixedType 0 1 0 1 1 11 6 0 6 0
Yang & Xin (2022) 21 multiProbe 0 1 1 2 M 0 0 1 13 100 mixedType 0 1 0 1 1 12 7 1 7 1
Yang & Xin (2022) 21 multiProbe 0 1 1 2 M 0 0 1 14 100 mixedType 0 1 0 1 1 13 8 2 8 2
Yang & Xin (2022) 21 multiProbe 0 1 1 2 M 0 0 1 15 74 generalization 0 0 1 1 1 14 9 3 9 3
Yang & Xin (2022) 21 multiProbe 0 1 1 2 M 0 0 1 16 83 mixedType 0 1 0 1 1 15 10 4 10 4
Yang & Xin (2022) 21 multiProbe 0 1 1 2 M 0 0 1 17 100 mixedType 0 1 0 1 1 16 11 5 11 5
Yang & Xin (2022) 21 multiProbe 0 1 1 2 M 0 0 1 18 84 mixedType 0 1 0 1 1 17 12 6 12 6
Yang & Xin (2022) 21 multiProbe 0 1 1 2 M 0 0 1 19 24 generalization 0 0 1 1 1 18 13 7 13 7
Yang & Xin (2022) 21 multiProbe 0 1 1 3 A 1 0 0 1 56 mixedType 0 1 0 0 0 0 -6 -12 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 3 A 1 0 0 4 40 mixedType 0 1 0 0 0 3 -3 -9 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 3 A 1 0 0 5 40 mixedType 0 1 0 0 0 4 -2 -8 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 3 A 1 0 0 6 0 generalization 0 0 1 0 0 5 -1 -7 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 3 B 0 1 0 7 67 mixedType 0 1 0 1 0 6 0 -6 0 0
Yang & Xin (2022) 21 multiProbe 0 1 1 3 B 0 1 0 8 83 mixedType 0 1 0 1 0 7 1 -5 1 0
Yang & Xin (2022) 21 multiProbe 0 1 1 3 B 0 1 0 9 100 mixedType 0 1 0 1 0 8 2 -4 2 0
Yang & Xin (2022) 21 multiProbe 0 1 1 3 B 0 1 0 10 100 mixedType 0 1 0 1 0 9 3 -3 3 0
Yang & Xin (2022) 21 multiProbe 0 1 1 3 B 0 1 0 11 100 mixedType 0 1 0 1 0 10 4 -2 4 0
Yang & Xin (2022) 21 multiProbe 0 1 1 3 B 0 1 0 12 100 mixedType 0 1 0 1 0 11 5 -1 5 0
Yang & Xin (2022) 21 multiProbe 0 1 1 3 M 0 0 1 13 100 mixedType 0 1 0 1 1 12 6 0 6 0
Yang & Xin (2022) 21 multiProbe 0 1 1 3 M 0 0 1 14 100 mixedType 0 1 0 1 1 13 7 1 7 1
Yang & Xin (2022) 21 multiProbe 0 1 1 3 M 0 0 1 15 100 mixedType 0 1 0 1 1 14 8 2 8 2
Yang & Xin (2022) 21 multiProbe 0 1 1 3 M 0 0 1 16 24 generalization 0 0 1 1 1 15 9 3 9 3
Yang & Xin (2022) 21 multiProbe 0 1 1 3 M 0 0 1 17 83 mixedType 0 1 0 1 1 16 10 4 10 4
Yang & Xin (2022) 21 multiProbe 0 1 1 3 M 0 0 1 18 83 mixedType 0 1 0 1 1 17 11 5 11 5
Yang & Xin (2022) 21 multiProbe 0 1 1 3 M 0 0 1 19 24 generalization 0 0 1 1 1 18 12 6 12 6
Yang & Xin (2022) 21 multiProbe 0 1 2 1 A 1 0 0 1 18 mixedType 0 1 0 0 0 0 -4 -10 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 1 A 1 0 0 2 0 mixedType 0 1 0 0 0 1 -3 -9 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 1 A 1 0 0 3 0 mixedType 0 1 0 0 0 2 -2 -8 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 1 A 1 0 0 4 24 generalization 0 0 1 0 0 3 -1 -7 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 1 B 0 1 0 5 38 mixedType 0 1 0 1 0 4 0 -6 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 1 B 0 1 0 6 32 mixedType 0 1 0 1 0 5 1 -5 1 0
Yang & Xin (2022) 21 multiProbe 0 1 2 1 B 0 1 0 7 82 mixedType 0 1 0 1 0 6 2 -4 2 0
Yang & Xin (2022) 21 multiProbe 0 1 2 1 B 0 1 0 8 74 mixedType 0 1 0 1 0 7 3 -3 3 0
Yang & Xin (2022) 21 multiProbe 0 1 2 1 B 0 1 0 9 90 mixedType 0 1 0 1 0 8 4 -2 4 0
Yang & Xin (2022) 21 multiProbe 0 1 2 1 B 0 1 0 10 90 mixedType 0 1 0 1 0 9 5 -1 5 0
Yang & Xin (2022) 21 multiProbe 0 1 2 1 M 0 0 1 11 82 mixedType 0 1 0 1 1 10 6 0 6 0
Yang & Xin (2022) 21 multiProbe 0 1 2 1 M 0 0 1 12 93 mixedType 0 1 0 1 1 11 7 1 7 1
Yang & Xin (2022) 21 multiProbe 0 1 2 1 M 0 0 1 13 92 mixedType 0 1 0 1 1 12 8 2 8 2
Yang & Xin (2022) 21 multiProbe 0 1 2 1 M 0 0 1 14 72 generalization 0 0 1 1 1 13 9 3 9 3
Yang & Xin (2022) 21 multiProbe 0 1 2 1 M 0 0 1 15 100 mixedType 0 1 0 1 1 14 10 4 10 4
Yang & Xin (2022) 21 multiProbe 0 1 2 1 M 0 0 1 16 96 mixedType 0 1 0 1 1 15 11 5 11 5
Yang & Xin (2022) 21 multiProbe 0 1 2 1 M 0 0 1 17 100 mixedType 0 1 0 1 1 16 12 6 12 6
Yang & Xin (2022) 21 multiProbe 0 1 2 1 M 0 0 1 18 60 generalization 0 0 1 1 1 17 13 7 13 7
Yang & Xin (2022) 21 multiProbe 0 1 2 2 A 1 0 0 1 43 mixedType 0 1 0 0 0 0 -5 -11 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 2 A 1 0 0 3 55 mixedType 0 1 0 0 0 2 -3 -9 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 2 A 1 0 0 4 44 mixedType 0 1 0 0 0 3 -2 -8 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 2 A 1 0 0 5 24 generalization 0 0 1 0 0 4 -1 -7 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 2 B 0 1 0 6 83 mixedType 0 1 0 1 0 5 0 -6 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 2 B 0 1 0 7 82 mixedType 0 1 0 1 0 6 1 -5 1 0
Yang & Xin (2022) 21 multiProbe 0 1 2 2 B 0 1 0 8 89 mixedType 0 1 0 1 0 7 2 -4 2 0
Yang & Xin (2022) 21 multiProbe 0 1 2 2 B 0 1 0 9 100 mixedType 0 1 0 1 0 8 3 -3 3 0
Yang & Xin (2022) 21 multiProbe 0 1 2 2 B 0 1 0 10 100 mixedType 0 1 0 1 0 9 4 -2 4 0
Yang & Xin (2022) 21 multiProbe 0 1 2 2 B 0 1 0 11 100 mixedType 0 1 0 1 0 10 5 -1 5 0
Yang & Xin (2022) 21 multiProbe 0 1 2 2 M 0 0 1 12 100 mixedType 0 1 0 1 1 11 6 0 6 0
Yang & Xin (2022) 21 multiProbe 0 1 2 2 M 0 0 1 13 100 mixedType 0 1 0 1 1 12 7 1 7 1
Yang & Xin (2022) 21 multiProbe 0 1 2 2 M 0 0 1 14 100 mixedType 0 1 0 1 1 13 8 2 8 2
Yang & Xin (2022) 21 multiProbe 0 1 2 2 M 0 0 1 15 74 generalization 0 0 1 1 1 14 9 3 9 3
Yang & Xin (2022) 21 multiProbe 0 1 2 2 M 0 0 1 16 55 mixedType 0 1 0 1 1 15 10 4 10 4
Yang & Xin (2022) 21 multiProbe 0 1 2 2 M 0 0 1 17 100 mixedType 0 1 0 1 1 16 11 5 11 5
Yang & Xin (2022) 21 multiProbe 0 1 2 2 M 0 0 1 18 55 mixedType 0 1 0 1 1 17 12 6 12 6
Yang & Xin (2022) 21 multiProbe 0 1 2 2 M 0 0 1 19 24 generalization 0 0 1 1 1 18 13 7 13 7
Yang & Xin (2022) 21 multiProbe 0 1 2 3 A 1 0 0 1 32 mixedType 0 1 0 0 0 0 -6 -12 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 3 A 1 0 0 4 55 mixedType 0 1 0 0 0 3 -3 -9 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 3 A 1 0 0 5 32 mixedType 0 1 0 0 0 4 -2 -8 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 3 A 1 0 0 6 0 generalization 0 0 1 0 0 5 -1 -7 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 3 B 0 1 0 7 49 mixedType 0 1 0 1 0 6 0 -6 0 0
Yang & Xin (2022) 21 multiProbe 0 1 2 3 B 0 1 0 8 89 mixedType 0 1 0 1 0 7 1 -5 1 0
Yang & Xin (2022) 21 multiProbe 0 1 2 3 B 0 1 0 9 88 mixedType 0 1 0 1 0 8 2 -4 2 0
Yang & Xin (2022) 21 multiProbe 0 1 2 3 B 0 1 0 10 93 mixedType 0 1 0 1 0 9 3 -3 3 0
Yang & Xin (2022) 21 multiProbe 0 1 2 3 B 0 1 0 11 100 mixedType 0 1 0 1 0 10 4 -2 4 0
Yang & Xin (2022) 21 multiProbe 0 1 2 3 B 0 1 0 12 100 mixedType 0 1 0 1 0 11 5 -1 5 0
Yang & Xin (2022) 21 multiProbe 0 1 2 3 M 0 0 1 13 100 mixedType 0 1 0 1 1 12 6 0 6 0
Yang & Xin (2022) 21 multiProbe 0 1 2 3 M 0 0 1 14 94 mixedType 0 1 0 1 1 13 7 1 7 1
Yang & Xin (2022) 21 multiProbe 0 1 2 3 M 0 0 1 15 93 mixedType 0 1 0 1 1 14 8 2 8 2
Yang & Xin (2022) 21 multiProbe 0 1 2 3 M 0 0 1 16 24 generalization 0 0 1 1 1 15 9 3 9 3
Yang & Xin (2022) 21 multiProbe 0 1 2 3 M 0 0 1 17 82 mixedType 0 1 0 1 1 16 10 4 10 4
Yang & Xin (2022) 21 multiProbe 0 1 2 3 M 0 0 1 18 101 mixedType 0 1 0 1 1 17 11 5 11 5
Yang & Xin (2022) 21 multiProbe 0 1 2 3 M 0 0 1 19 24 generalization 0 0 1 1 1 18 12 6 12 6

Model Specification

Model.1

Null model

Model.1 <- lme(
  outcome ~ 1, # Overall intercept (mean)
  data = wp_data_mlm,
  method = "REML",
  random = ~ 1 | study/cluster/case,
  control = list(
    maxIter = 100, # 100 iterations for the lme optimization algorithm
    msMaxIter = 100, # 100 iterations for the optimization step inside the lme optimization
    tolerance = 1e-3, # Tolerance for the convergence criterion
    opt = "optim",
    optimMethod = "BFGS" # Optimization algorithm for unconstrained nonlinear problems
  )
)

Cluster-robust variance estimation

options(width = 100)
Model.1.vcov <- vcovCR(Model.1, type = "CR2") # Calculate variance-covariance matrix
Model.1.crve <-
  coef_test(Model.1, vcov = Model.1.vcov , test = "Satterthwaite") # Test regression coefficients 

Model.1.crve$sig <-
  case_when(
    is.na(Model.1.crve$p_Satt) ~ "",
    Model.1.crve$p_Satt < 0.001 ~ "***",
    Model.1.crve$p_Satt < 0.01 ~ "**",
    Model.1.crve$p_Satt < 0.05 ~ "*",
    TRUE ~ ""
  )

# Calculate standardized mean difference (d)
Model.1.d <- Model.1.crve %>%
  mutate(d = 2*abs(tstat)/sqrt(df_Satt)) %>%
  select(d)

Model.1.crve.mixed <- cbind(Model.1.crve, Model.1.d) %>%
  mutate_if(is.numeric, ~ round(., 3)) %>% tibble() %>%
  rename(
    Estimate = beta,
    "t-stat" = tstat,
    "d.f. (Satt)" = df_Satt,
    "p-val (Satt)" = p_Satt
  )

Model.1.crve.mixed %>%
  datatable(options = list(
    initComplete = JS(
      "
      function(settings, json) {
        $(this.api().table().header()).css({
          'font-family': 'Arial, sans-serif',
          'font-size': '13px',
        });
      }
    "
    )
  )) %>%
  formatStyle(columns = colnames(.$x$data), `font-size` = "13px")

Variance components

# Obtain 95% confidence intervals for estimates
intervals(Model.1, which = "var-cov")
Approximate 95% confidence intervals

 Random Effects:
  Level: study 
                   lower     est.    upper
sd((Intercept)) 8.838701 13.25822 19.88758
  Level: cluster 
                   lower     est.    upper
sd((Intercept)) 4.550369 7.265586 11.60098
  Level: case 
                       lower       est.     upper
sd((Intercept)) 1.630219e-11 0.07936647 386391958

 Within-group standard error:
   lower     est.    upper 
31.98330 32.94737 33.94050 
# Obtain variance components
VarCorr(Model.1) 
            Variance     StdDev     
study =     pdLogChol(1)            
(Intercept) 1.757803e+02 13.25821784
cluster =   pdLogChol(1)            
(Intercept) 5.278874e+01  7.26558621
case =      pdLogChol(1)            
(Intercept) 6.299036e-03  0.07936647
Residual    1.085529e+03 32.94737207
# Estimate the standard errors of variances
sqrt(diag(varcomp_vcov(Model.1))) 
  Tau.study.var((Intercept)) Tau.cluster.var((Intercept))    Tau.case.var((Intercept)) 
                    75.63062                     26.80080                     10.01950 
                    sigma_sq 
                    33.80316 

Intraclass correlation (ICC)

Level 4 (study)

total_var <- as.numeric(VarCorr(Model.1)[[2]]) +
  as.numeric(VarCorr(Model.1)[[4]]) +
  as.numeric(VarCorr(Model.1)[[6]]) +
  as.numeric(VarCorr(Model.1)[[7]])

ICC.L4 = as.numeric(VarCorr(Model.1)[[2]]) / total_var
ICC.L4
[1] 0.1337643

Level 3 (cluster)

ICC.L3 = (as.numeric(VarCorr(Model.1)[[4]])) / total_var
ICC.L3
[1] 0.04017089

Level 2 (case)

ICC.L2 = (as.numeric(VarCorr(Model.1)[[6]])) / total_var
format(ICC.L2, scientific = FALSE)
[1] "0.000004793406"

Autocorrelation

acf_Model.1 <- ACF(Model.1, maxLag = 14) # maximum number of time lag is 14
acf_Model.1.plot <- plot(acf_Model.1, alpha = .05)
acf_Model.1.value <- tidy(acf_Model.1$ACF) %>%
  mutate(acf = round(x, 2)) %>%
  select(acf)
acf_Model.1.tb <-
  tableGrob(acf_Model.1.value[1:10,],
            rows = NULL,
            theme = ttheme_default(base_size = 10))
grid.arrange(acf_Model.1.plot,
             acf_Model.1.tb,
             nrow = 1,
             widths = c(0.85, 0.15))

Model.2

AR(1) correlation structure and homogeneous residual variances

Model.2 <- lme(
  outcome ~
    time_A + level_AB + trend_AB + level_BM + trend_BM, # piecewise growth model
  data = wp_data_mlm,
  method = "REML",
  random = ~ level_AB | study/cluster/case,
  correlation = corAR1(value = 0.3, form = ~ session | # AR(1) correlation structure
                         study/cluster/case),
  control = list(
    maxIter = 100, # 100 iterations for the lme optimization algorithm
    msMaxIter = 100, # 100 iterations for the optimization step inside the lme optimization
    tolerance = 1e-3, # Tolerance for the convergence criterion
    opt = "optim",
    optimMethod = "BFGS" # Optimization algorithm for unconstrained nonlinear problems
  )
)

Cluster-robust variance estimation

options(width = 100)
Model.2.vcov <- vcovCR(Model.2, type = "CR2") # Calculate variance-covariance matrix
Model.2.crve <-
  coef_test(Model.2, vcov = Model.2.vcov , test = "Satterthwaite") # Test regression coefficients 

Model.2.crve$sig <-
  case_when(
    is.na(Model.2.crve$p_Satt) ~ "",
    Model.2.crve$p_Satt < 0.001 ~ "***",
    Model.2.crve$p_Satt < 0.01 ~ "**",
    Model.2.crve$p_Satt < 0.05 ~ "*",
    TRUE ~ ""
  )

# Calculate standardized mean difference (d)
Model.2.d <- Model.2.crve %>%
  mutate(d = 2*abs(tstat)/sqrt(df_Satt)) %>%
  select(d)

Model.2.crve.mixed <- cbind(Model.2.crve, Model.2.d) %>%
  mutate_if(is.numeric, ~ round(., 3)) %>% tibble() %>%
  rename(
    Estimate = beta,
    "t-stat" = tstat,
    "d.f. (Satt)" = df_Satt,
    "p-val (Satt)" = p_Satt
  )

Model.2.crve.mixed %>%
  datatable(options = list(
    initComplete = JS(
      "
      function(settings, json) {
        $(this.api().table().header()).css({
          'font-family': 'Arial, sans-serif',
          'font-size': '13px',
        });
      }
    "
    )
  )) %>%
  formatStyle(columns = colnames(.$x$data), `font-size` = "13px")

Variance components

# Obtain 95% confidence intervals for estimates
intervals(Model.2, which = "var-cov")
Approximate 95% confidence intervals

 Random Effects:
  Level: study 
                               lower        est.      upper
sd((Intercept))            1.5538732  5.04618898 16.3874527
sd(level_AB)               9.2918612 14.45230441 22.4787154
cor((Intercept),level_AB) -0.1321311  0.04777731  0.2246384
  Level: cluster 
                               lower       est.      upper
sd((Intercept))            8.4227358 11.9498549 16.9539964
sd(level_AB)               9.2057302 13.3220975 19.2791098
cor((Intercept),level_AB) -0.9331361 -0.8177208 -0.5495105
  Level: case 
                               lower       est.     upper
sd((Intercept))            7.8325790  9.7449547 12.124250
sd(level_AB)               5.4235680  7.6999521 10.931782
cor((Intercept),level_AB) -0.9933543 -0.9415845 -0.572933

 Correlation structure:
         lower      est.     upper
Phi1 0.2662139 0.3284204 0.3879027

 Within-group standard error:
   lower     est.    upper 
15.90578 16.51657 17.15082 
# Obtain variance components
VarCorr(Model.2) 
            Variance            StdDev    Corr  
study =     pdLogChol(level_AB)                 
(Intercept)  25.46402            5.046189 (Intr)
level_AB    208.86910           14.452304 0.048 
cluster =   pdLogChol(level_AB)                 
(Intercept) 142.79903           11.949855 (Intr)
level_AB    177.47828           13.322098 -0.818
case =      pdLogChol(level_AB)                 
(Intercept)  94.96414            9.744955 (Intr)
level_AB     59.28926            7.699952 -0.942
Residual    272.79712           16.516571       
# Estimate the standard errors of variances
sqrt(diag(varcomp_vcov(Model.2)))
           Tau.study.var((Intercept))   Tau.study.cov(level_AB,(Intercept)) 
                          52.52467981                           62.88129867 
              Tau.study.var(level_AB)          Tau.cluster.var((Intercept)) 
                         121.69801853                           60.83839434 
Tau.cluster.cov(level_AB,(Intercept))             Tau.cluster.var(level_AB) 
                          61.56161983                           76.12250881 
            Tau.case.var((Intercept))    Tau.case.cov(level_AB,(Intercept)) 
                          21.83994800                           20.21876302 
               Tau.case.var(level_AB)                            cor_params 
                          22.45272248                            0.02937057 
                             sigma_sq 
                          10.16239412 

Autocorrelation

acf_Model.2 <- ACF(Model.2, maxLag = 14) 
acf_Model.2.plot <- plot(acf_Model.2, alpha = .05)
acf_Model.2.value <- tidy(acf_Model.2$ACF) %>%
  mutate(acf = round(x, 2)) %>%
  select(acf)
acf_Model.2.tb <-
  tableGrob(acf_Model.2.value[1:10,],
            rows = NULL,
            theme = ttheme_default(base_size = 10))
grid.arrange(acf_Model.2.plot,
             acf_Model.2.tb,
             nrow = 1,
             widths = c(0.85, 0.15))

Model 3

AR(1) correlation structure and heterogenous residual variances

Model.3 <- lme(
  outcome ~
    time_A + level_AB + trend_AB + level_BM + trend_BM, # piecewise growth model
  data = wp_data_mlm,
  method = "REML",
  random = ~ level_AB | study/cluster/case,
  correlation = corAR1(value = 0.3, form = ~ session | # AR(1) correlation structure
                         study/cluster/case),
  weights = varIdent(form = ~ 1 | # heterogenous residual variances across phases
                       phase),
  control = list(
    maxIter = 100, # 100 iterations for the lme optimization algorithm
    msMaxIter = 100, # 100 iterations for the optimization step inside the lme optimization
    tolerance = 1e-3, # Tolerance for the convergence criterion
    opt = "optim",
    optimMethod = "BFGS" # Optimization algorithm for unconstrained nonlinear problems
  )
)

Cluster-robust variance estimation

options(width = 100)
Model.3.vcov <- vcovCR(Model.3, type = "CR2") # Calculate variance-covariance matrix
Model.3.crve <-
  coef_test(Model.3, vcov = Model.3.vcov , test = "Satterthwaite") # Test regression coefficients 

Model.3.crve$sig <-
  case_when(
    is.na(Model.3.crve$p_Satt) ~ "",
    Model.3.crve$p_Satt < 0.001 ~ "***",
    Model.3.crve$p_Satt < 0.01 ~ "**",
    Model.3.crve$p_Satt < 0.05 ~ "*",
    TRUE ~ ""
  )

# Calculate standardized mean difference (d)
Model.3.d <- Model.3.crve %>%
  mutate(d = 2*abs(tstat)/sqrt(df_Satt)) %>%
  select(d)

Model.3.crve.mixed <- cbind(Model.3.crve, Model.3.d) %>%
  mutate_if(is.numeric, ~ round(., 3)) %>% tibble() %>%
  rename(
    Estimate = beta,
    "t-stat" = tstat,
    "d.f. (Satt)" = df_Satt,
    "p-val (Satt)" = p_Satt
  )

Model.3.crve.mixed %>%
  datatable(options = list(
    initComplete = JS(
      "
      function(settings, json) {
        $(this.api().table().header()).css({
          'font-family': 'Arial, sans-serif',
          'font-size': '13px',
        });
      }
    "
    )
  )) %>%
  formatStyle(columns = colnames(.$x$data), `font-size` = "13px")

Variance components

# Obtain 95% confidence intervals for estimates
intervals(Model.3, which = "var-cov")
Approximate 95% confidence intervals

 Random Effects:
  Level: study 
                               lower        est.      upper
sd((Intercept))            1.4654265  4.97747674 16.9065281
sd(level_AB)               8.9888373 14.35915122 22.9379193
cor((Intercept),level_AB) -0.4759788  0.07387022  0.5821986
  Level: cluster 
                               lower       est.      upper
sd((Intercept))            8.4470284 11.9902949 17.0198519
sd(level_AB)               9.1877284 13.3434704 19.3789144
cor((Intercept),level_AB) -0.9324452 -0.8155288 -0.5440125
  Level: case 
                               lower       est.      upper
sd((Intercept))            8.6538652 10.4507399 12.6207149
sd(level_AB)               6.3320664  8.4049485 11.1564147
cor((Intercept),level_AB) -0.9999937 -0.9899852  0.7773031

 Correlation structure:
         lower     est.     upper
Phi1 0.2787972 0.339689 0.3978605

 Variance function:
     lower     est.    upper
B 1.119048 1.198908 1.284468
M 1.183036 1.309420 1.449305

 Within-group standard error:
   lower     est.    upper 
13.61473 14.41692 15.26638 
# Obtain variance components
VarCorr(Model.3) 
            Variance            StdDev    Corr  
study =     pdLogChol(level_AB)                 
(Intercept)  24.77527            4.977477 (Intr)
level_AB    206.18522           14.359151 0.074 
cluster =   pdLogChol(level_AB)                 
(Intercept) 143.76717           11.990295 (Intr)
level_AB    178.04820           13.343470 -0.816
case =      pdLogChol(level_AB)                 
(Intercept) 109.21797           10.450740 (Intr)
level_AB     70.64316            8.404949 -0.99 
Residual    207.84766           14.416923       
# Extract heterogeneous residual variances
var_Model.3 <- extract_varcomp(Model.3, separate_variances = T)
var_Model.3 <- var_Model.3$sigma_sq %>% as.data.frame()
colnames(var_Model.3) <- NULL
var_Model.3 
          
A 207.8477
B 298.7564
M 356.3714
# Estimate the standard errors of variances
var.Model.3 <- Model.3$apVar
par.Model.3 <-
  attr(var.Model.3, "Pars") # logged standard deviations
par.Model.3[11] <- "0.1814115"
par.Model.3[12] <- "0.2695840"
par.Model.3 <- par.Model.3 %>% as.numeric()

se.vc.Model.3 <- c()
se.vc.Model.3[1] <-
  deltamethod (~ exp(x1)^2, par.Model.3, var.Model.3) # transform them to variances:
se.vc.Model.3[2] <-
  deltamethod (~ exp(x2)^2, par.Model.3, var.Model.3)
se.vc.Model.3[3] <-
  deltamethod (~ exp(x3)^2, par.Model.3, var.Model.3)
se.vc.Model.3[4] <-
  deltamethod (~ exp(x4)^2, par.Model.3, var.Model.3)
se.vc.Model.3[5] <-
  deltamethod (~ exp(x5)^2, par.Model.3, var.Model.3)
se.vc.Model.3[6] <-
  deltamethod (~ exp(x6)^2, par.Model.3, var.Model.3)
se.vc.Model.3[7] <-
  deltamethod (~ exp(x7)^2, par.Model.3, var.Model.3)
se.vc.Model.3[8] <-
  deltamethod (~ exp(x8)^2, par.Model.3, var.Model.3)
se.vc.Model.3[9] <-
  deltamethod (~ exp(x9)^2, par.Model.3, var.Model.3)
se.vc.Model.3[10] <-
  deltamethod (~ exp(x10)^2, par.Model.3, var.Model.3)
se.vc.Model.3[11] <-
  deltamethod (~ exp(x11)^2, par.Model.3, var.Model.3)
se.vc.Model.3[12] <-
  deltamethod (~ exp(x12)^2, par.Model.3, var.Model.3)
se.vc.Model.3[13] <-
  deltamethod (~ exp(x13)^2, par.Model.3, var.Model.3)

se.vc.Model.3.td <- data.frame(
  Names = c(
    "Tau.intercept.study",
    "Tau.level_AB.study",
    "Cov((intercept),level_AB).study",
    "Tau.intercept.cluster",
    "Tau.level_AB.cluster",
    "Cov((intercept),level_AB).cluster",
    "Tau.intercept.case",
    "Tau.level_AB.case",
    "Cov((intercept),level_AB).case",
    "CorStruct",
    "Sigma.sq(Intervention)",
    "Sigma.sq(Maintenance)",
    "Sigma.sq(Baseline)"
  ),
  Values = round(se.vc.Model.3, digits = 5)
)
rownames(se.vc.Model.3.td) <- NULL
colnames(se.vc.Model.3.td) <-
  c("Parameter Names", "Standard Errors")
print(se.vc.Model.3.td, row.names = FALSE)
                   Parameter Names Standard Errors
               Tau.intercept.study        21.02671
                Tau.level_AB.study        20.41437
   Cov((intercept),level_AB).study         0.00019
             Tau.intercept.cluster        51.38786
              Tau.level_AB.cluster        67.79736
 Cov((intercept),level_AB).cluster         0.01124
                Tau.intercept.case        30.91346
                 Tau.level_AB.case        98.55076
    Cov((intercept),level_AB).case         1.62379
                         CorStruct         0.56591
            Sigma.sq(Intervention)         0.10111
             Sigma.sq(Maintenance)         0.17758
                Sigma.sq(Baseline)        12.14238

Autocorrelation

acf_Model.3 <- ACF(Model.3, maxLag = 14) 
acf_Model.3.plot <- plot(acf_Model.3, alpha = .05)
acf_Model.3.value <- tidy(acf_Model.3$ACF) %>%
  mutate(acf = round(x, 2)) %>%
  select(acf)
acf_Model.3.tb <-
  tableGrob(acf_Model.3.value[1:10, ],
            rows = NULL,
            theme = ttheme_default(base_size = 10))
grid.arrange(acf_Model.3.plot,
             acf_Model.3.tb,
             nrow = 1,
             widths = c(0.85, 0.15))

Likelihood ratio test for heterogeneous residual variances across phases

anova(Model.2, Model.3)
        Model df      AIC      BIC    logLik   Test  L.Ratio p-value
Model.2     1 17 18895.78 18992.67 -9430.890                        
Model.3     2 19 18863.20 18971.49 -9412.601 1 vs 2 36.57892  <.0001

Model.4

Complexity of word problem measures as a moderator

Model.4 <- lme(
  outcome ~
    time_A + level_AB + trend_AB + level_BM + trend_BM + # piecewise growth model
    mixedType + time_A:mixedType + level_AB:mixedType + # Interactions with mixedTypes 
    trend_AB:mixedType + level_BM:mixedType + trend_BM:mixedType +
    generalization + time_A:generalization + level_AB:generalization + # Interactions with generalization
    trend_AB:generalization + level_BM:generalization + trend_BM:generalization,
  data = wp_data_mlm,
  method = "REML",
  random = ~ level_AB | study/cluster/case,
  correlation = corAR1(value = 0.2, form = ~ session | # AR(1) correlation structure
                         study/cluster/case),
  weights = varIdent(form = ~ 1 | phase), # heterogenous residual variances across phases
  control = list(
    maxIter = 100, # 100 iterations for the lme optimization algorithm
    msMaxIter = 100, # 100 iterations for the optimization step inside the lme optimization
    tolerance = 1e-3, # Tolerance for the convergence criterion
    opt = "optim",
    optimMethod = "BFGS" # Optimization algorithm for unconstrained nonlinear problems
  )
)

Cluster-robust variance estimation

options(width = 100)
Model.4.vcov <- vcovCR(Model.4, type = "CR2")  # Calculate variance-covariance matrix
Model.4.crve <-
  coef_test(Model.4, vcov = Model.4.vcov, test = "Satterthwaite") # Test regression coefficients 

Model.4.crve$sig <-
  case_when(
    is.na(Model.4.crve$p_Satt) ~ "",
    Model.4.crve$p_Satt < 0.001 ~ "***",
    Model.4.crve$p_Satt < 0.01 ~ "**",
    Model.4.crve$p_Satt < 0.05 ~ "*",
    TRUE ~ ""
  )

# Calculate standardized mean difference (d)
Model.4.d <- Model.4.crve %>%
  mutate(d = 2*abs(tstat)/sqrt(df_Satt)) %>%
  select(d)

Model.4.crve.mixed <- cbind(Model.4.crve, Model.4.d) %>%
  mutate_if(is.numeric, ~ round(., 3)) %>% tibble() %>%
  rename(
    Estimate = beta,
    "t-stat" = tstat,
    "d.f. (Satt)" = df_Satt,
    "p-val (Satt)" = p_Satt
  )

Model.4.crve.mixed %>%
  datatable(options = list(
    initComplete = JS(
      "
      function(settings, json) {
        $(this.api().table().header()).css({
          'font-family': 'Arial, sans-serif',
          'font-size': '13px',
        });
      }
    "
    )
  )) %>%
  formatStyle(columns = colnames(.$x$data), `font-size` = "13px")

Assess the significance of the model’s coefficients

# Baseline level
Wald_test(Model.4,
          constraints = constrain_zero(c(
            "(Intercept)",
            "mixedType",
            "generalization"
          ),
          reg_ex = FALSE),
          vcov = Model.4.vcov)
 test Fstat df_num df_denom   p_val sig
  HTZ  19.2      3     3.83 0.00891  **
# Baseline trend
Wald_test(Model.4,
          constraints = constrain_zero("^time_A",
          reg_ex = TRUE),
          vcov = Model.4.vcov)
 test  Fstat df_num df_denom p_val sig
  HTZ 0.0047      3   0.0188 0.998    
# Change in level AB 
Wald_test(Model.4,
          constraints = constrain_zero("^level_AB",
          reg_ex = TRUE),
          vcov = Model.4.vcov)
 test Fstat df_num df_denom  p_val sig
  HTZ  33.9      3     8.87 <0.001 ***
# Change in trend AB 
Wald_test(Model.4,
          constraints = constrain_zero("^trend_AB",
          reg_ex = TRUE),
          vcov = Model.4.vcov)
 test Fstat df_num df_denom p_val sig
  HTZ   2.7      3     1.08 0.398    
# Change in level BM  
Wald_test(Model.4,
          constraints = constrain_zero("^level_BM",
          reg_ex = TRUE),
          vcov = Model.4.vcov)
 test Fstat df_num df_denom p_val sig
  HTZ  6.54      3     0.61 0.402    
# Change in trend BM  
Wald_test(Model.4,
          constraints = constrain_zero("^trend_BM",
          reg_ex = TRUE),
          vcov = Model.4.vcov)
 test Fstat df_num df_denom p_val sig
  HTZ   1.7      3     2.59 0.356    

Variance components

# Obtain 95% confidence intervals for estimates
intervals(Model.4, which = "var-cov")
Approximate 95% confidence intervals

 Random Effects:
  Level: study 
                               lower       est.      upper
sd((Intercept))            1.6112995  6.5882110 26.9375889
sd(level_AB)              12.4777788 20.6506767 34.1767917
cor((Intercept),level_AB) -0.9241273 -0.3122337  0.7489452
  Level: cluster 
                               lower       est.      upper
sd((Intercept))            7.5681542 11.6522567 17.9403172
sd(level_AB)               7.8991279 12.3331552 19.2561404
cor((Intercept),level_AB) -0.9703457 -0.8854755 -0.6062484
  Level: case 
                               lower       est.     upper
sd((Intercept))            9.0583791 10.8115734 12.904088
sd(level_AB)               7.1269930  9.1154304 11.658644
cor((Intercept),level_AB) -0.9421297 -0.8686373 -0.715486

 Correlation structure:
         lower      est.     upper
Phi1 0.1538955 0.2207353 0.2855642

 Variance function:
     lower     est.    upper
B 1.020515 1.095024 1.174972
M 1.050222 1.167123 1.297036

 Within-group standard error:
   lower     est.    upper 
13.24684 14.00905 14.81513 
# Obtain variance components
VarCorr(Model.4) 
            Variance            StdDev    Corr  
study =     pdLogChol(level_AB)                 
(Intercept)  43.40452            6.588211 (Intr)
level_AB    426.45045           20.650677 -0.312
cluster =   pdLogChol(level_AB)                 
(Intercept) 135.77509           11.652257 (Intr)
level_AB    152.10672           12.333155 -0.885
case =      pdLogChol(level_AB)                 
(Intercept) 116.89012           10.811573 (Intr)
level_AB     83.09107            9.115430 -0.869
Residual    196.25360           14.009054       
# Extract heterogeneous residual variances
var_Model.4 <- extract_varcomp(Model.4, separate_variances = T)
var_Model.4 <- var_Model.4$sigma_sq %>% as.data.frame()
colnames(var_Model.4) <- NULL
var_Model.4 
          
A 196.2536
B 235.3233
M 267.3320
# Estimate the standard errors of variances
var.Model.4 <- Model.4$apVar
par.Model.4 <-
  attr(var.Model.4, "Pars") # logged standard deviations
par.Model.4[11] <- "0.09077629"
par.Model.4[12] <- "0.15454186"
par.Model.4 <- par.Model.4 %>% as.numeric()

se.vc.Model.4 <- c()
se.vc.Model.4[1] <-
  deltamethod (~ exp(x1)^2, par.Model.4, var.Model.4) # transform them to variances:
se.vc.Model.4[2] <-
  deltamethod (~ exp(x2)^2, par.Model.4, var.Model.4)
se.vc.Model.4[3] <-
  deltamethod (~ exp(x3)^2, par.Model.4, var.Model.4)
se.vc.Model.4[4] <-
  deltamethod (~ exp(x4)^2, par.Model.4, var.Model.4)
se.vc.Model.4[5] <-
  deltamethod (~ exp(x5)^2, par.Model.4, var.Model.4)
se.vc.Model.4[6] <-
  deltamethod (~ exp(x6)^2, par.Model.4, var.Model.4)
se.vc.Model.4[7] <-
  deltamethod (~ exp(x7)^2, par.Model.4, var.Model.4)
se.vc.Model.4[8] <-
  deltamethod (~ exp(x8)^2, par.Model.4, var.Model.4)
se.vc.Model.4[9] <-
  deltamethod (~ exp(x9)^2, par.Model.4, var.Model.4)
se.vc.Model.4[10] <-
  deltamethod (~ exp(x10)^2, par.Model.4, var.Model.4)
se.vc.Model.4[11] <-
  deltamethod (~ exp(x11)^2, par.Model.4, var.Model.4)
se.vc.Model.4[12] <-
  deltamethod (~ exp(x12)^2, par.Model.4, var.Model.4)
se.vc.Model.4[13] <-
  deltamethod (~ exp(x13)^2, par.Model.4, var.Model.4)

se.vc.Model.4.td <- data.frame(
  Names = c(
    "Tau.intercept.study",
    "Tau.level_AB.study",
    "Cov((intercept),level_AB).study",
    "Tau.intercept.cluster",
    "Tau.level_AB.cluster",
    "Cov((intercept),level_AB).cluster",
    "Tau.intercept.case",
    "Tau.level_AB.case",
    "Cov((intercept),level_AB).case",
    "CorStruct",
    "Sigma.sq(Intervention)",
    "Sigma.sq(Maintenance)",
    "Sigma.sq(Baseline)"
  ),
  Values = round(se.vc.Model.4, digits = 5)
)
rownames(se.vc.Model.4.td) <- NULL
colnames(se.vc.Model.4.td) <-
  c("Parameter Names", "Standard Errors")
print(se.vc.Model.4.td, row.names = FALSE)
                   Parameter Names Standard Errors
               Tau.intercept.study        21.10346
                Tau.level_AB.study        20.86465
   Cov((intercept),level_AB).study         0.00433
             Tau.intercept.cluster        59.79072
              Tau.level_AB.cluster        69.15377
 Cov((intercept),level_AB).cluster         0.00525
                Tau.intercept.case        62.37260
                 Tau.level_AB.case       219.23381
    Cov((intercept),level_AB).case         0.72520
                         CorStruct         0.34708
            Sigma.sq(Intervention)         0.08622
             Sigma.sq(Maintenance)         0.14670
                Sigma.sq(Baseline)        11.20368

Autocorrelation

acf_Model.4 <- ACF(Model.4, maxLag = 14) 
acf_Model.4.plot <- plot(acf_Model.4, alpha = .05)
acf_Model.4.value <- tidy(acf_Model.4$ACF) %>%
  mutate(acf = round(x, 2)) %>%
  select(acf)
acf_Model.4.tb <-
  tableGrob(acf_Model.4.value[1:10,],
            rows = NULL,
            theme = ttheme_default(base_size = 10))
grid.arrange(acf_Model.4.plot,
             acf_Model.4.tb,
             nrow = 1,
             widths = c(0.85, 0.15))