5.0) Manual mode

Hugo Flávio

2021-01-05

Index

  1. Preparing your data
    1. Structuring the study area
    2. Creating a distances matrix
    3. The preload() function
  2. explore()
    1. Processes behind explore()
    2. Inspecting the explore() results
  3. migration()
    1. Processes behind migration()
    2. Inspecting the migration() results
    3. One-way efficiency estimations
  4. residency()
    1. Processes behind residency()
    2. Inspecting the residency() results
    3. Multi-way efficiency estimations
  5. Manual mode
  6. Beyond the three main analyses

Refining the results

As you inspect your results, you may find out that you would rather change a specific outcome. For example, perhaps a detection was discarded that is actually relevant, or there are detections that clearly match a predator’s behaviour rather than your animal, and actel didn’t pick that up.

When this happens, it is time to take the lead and tell actel what you want to do, by triggering the manual processing mode. To do this, simply add the signals that you want to deal with manually in the override argument (e.g. override = c(1234, 1405) will trigger manual mode for tags 1234 and 1405).

When you list signals in override, actel will bypass all of the normal checks and give you full control over movement validity. You will know this is happening when you see the following message:

----------------------------
M: Override has been triggered for tag R64K-1234. Entering full manual mode.
Opening movements list for inspection.

[...]

Would you like to render any movement event invalid?(y/n/comment) 

You must then decide whether or not you want to invalidate any events and which events you would like to be invalidated. Once you have finished your edits, actel will automatically terminate manual mode and proceed with the analysis.

actel report with overridden tags

When you trigger the manual mode, actel will flag that in the report’s summary. On top of that, the graphics for tags that have been manually overridden will be highlighted in red, so you can quickly find them. Below you can see the difference between the original graphic (on the left) and the manually overridden version (on the right):

drawing drawing

Back to top.