Include only fixations initiated after 120ms. That means, if there was an already ongoing fixation, you should ignore this one and go to the next one instead
This helps to get fixations which happens In response to an event
get_looks <- function(
df,
aoi_collection,
scope = NA,
intra_scope_window = c("start", "end"),
lookaway_stop = NA,
skip_ongoing_fixation = FALSE, # <-- defaults to FALSE, Memo needs this to be true
intra_scope_cut = TRUE) {
Include only fixations initiated after 120ms. That means, if there was an already ongoing fixation, you should ignore this one and go to the next one instead
This helps to get fixations which happens In response to an event