ccp-eva / eyewit

👁‍🗨 Bootstrapping common eye-tracking tasks
MIT License
7 stars 3 forks source link

⭐ Add flag to allow skipping very first Fixation Index #37

Closed kalaschnik closed 2 years ago

kalaschnik commented 2 years ago

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) {