Get group heading
get_group_heading_and_speed.Rd
Computes the group centroid heading over time using either temporal or spatial headings, and going either forward (into the future) or backward (into the past) when computing the heading
Usage
get_group_heading_and_speed(
xs,
ys,
heading_type,
spatial_R = NULL,
t_window = NULL,
forward = T,
min_inds_tracked = NULL,
seconds_per_time_step = 1
)
Arguments
- xs
N x n_times
matrix giving x coordinates of each individual over time- ys
N x n_times
matrix giving y coordinates of each individual over time- heading_type
character string specifying heading type -
'spatial'
or'temporal'
- spatial_R
radius to use for spatial headings (if
heading_type = 'spatial'
)- t_window
temporal window to use for temporal headings (if
heading_type = 'temporal'
)- forward
whether to compute headings into the future (
forward = T
) or the past (forward = F
)- min_inds_tracked
if specified, sets a minimum number of individuals that must be tracked at any moment in time to compute heading (otherwise the heading will be NA at that time point
- seconds_per_time_step
number of seconds corresponding to each time step