Learn R Programming

mousetrap (version 1.2.0)

mt_align_start: Align start position of trajectories.

Description

Adjust trajectories so that all trajectories have the same start position.

Usage

mt_align_start(data, use = "trajectories", save_as = "trajectories", xpos_start = 0, ypos_start = 0, show_progress = TRUE)

Arguments

data
a mousetrap data object created using one of the mt_import functions (see mt_example for details). Alternatively, a trajectory array can be provided directly (in this case use will be ignored).
use
a character string specifying which trajectory data should be used.
save_as
a character string specifying where the resulting trajectory data should be stored.
xpos_start
an integer specifying the value the first x-position should have in each trial.
ypos_start
an integer specifying the value the first y-position should have in each trial.
show_progress
logical indicating whether function should report on its progress.

Value

A mousetrap data object (see mt_example) with aligned trajectories. If the trajectory array was provided directly as data, only the trajectory array will be returned.

See Also

mt_space_normalize for space normalizing trajectories.

mt_remap_symmetric for remapping trajectories.

Examples

Run this code
mt_example <- mt_align_start(mt_example,
  xpos_start=0, ypos_start=0)

Run the code above in your browser using DataLab