rotation_test.Rd
Carry out a rotation test (as applied in Miller et al. 2004 and detailed in DeRuiter and Solow 2008). This test is a variation on standard randomization or permutation tests that is appropriate for time-series of non-independent events (for example, time series of behavioral events that tend to occur in clusters).
rotation_test( event_times, exp_period, full_period = range(event_times, na.rm = TRUE), n_rot = 10000, ts_fun = length, skip_sort = FALSE, conf_level = 0.95, return_rot_stats = FALSE, ... )
event_times | A vector of the times of events. Times can be given in any format. If |
---|---|
exp_period | A two-column vector, matrix, or data frame specifying the start and end times of the "experimental" period for the test. If a matrix or data frame is provided, one column should be start time(s) and the other end time(s).
Note that all data that falls into any experimental period will be concatenated and passed to |
full_period | A length two vector giving the start and end times of the full period during which events in event_times might have occurred. If missing, default is range( |
n_rot | Number of rotations (randomizations) to carry out. Default is |
ts_fun | A function to compute the test statistic. Input provided to this function will be the times of events that occur during the "experimental" period. The default function is |
skip_sort | Logical. Should times be sorted in ascending order? Default is |
conf_level | Confidence level to be used for the bootstrap CI calculation, specified as a proportion. (default is |
return_rot_stats | Logical. Should output include the test statistics computed for each rotation of the data? Default is |
... | Additional inputs to be passed to |
A list containing the following components:
result, A one-row data frame with rows:
statistic: Test statistic (from original data)
p_value: P-value of the test (2-sided)
n_rot: Number of rotations
CI_low: Lower bound on rotation-resampling percentile-based confidence interval
CI_up: Upper bound on rotation-resampling percentile-based confidence interval
conf_level: Confidence level, as a proportion
rot_stats (If return_rot_stats
is TRUE), a vector of n_rot
statistics from the rotated datasets
This implementation of the rotation test compares a test statistic (some summary of an "experimental" time-period) to its expected value during non-experimental periods. Instead of resampling random subsets of observations from the original dataset, the rotation test samples many contiguous blocks from the original data, each the same duration as the experimental period. The summary statistic, computed for these "rotated" samples, provides a distribution to which the test statistic from the data can be compared.
Miller, P. J. O., Shapiro, A. D., Tyack, P. L. and Solow, A. R. (2004). Call-type matching in vocal exchanges of free-ranging resident killer whales, Orcinus orca. Anim. Behav. 67, 1099–1107.
DeRuiter, S. L. and Solow, A. R. (2008). A rotation test for behavioural point-process data. Anim. Behav. 76, 1103–1452.
Advanced users seeking more flexibility may want to use the underlying function rotate
to carry out customized rotation resampling. rotate
generates one rotated dataset from event_times
and exp_period
.
r <- rotation_test( event_times = 2000 * runif(500), exp_period = c(100, 200), return_rot_stats = TRUE, ts_fun = mean )