Basics of Movement Analysis: Complex is Simple

Elie Gurarie, University of Maryland
August 22, 2016





Stats we are used to:

“Classical” statistics (and your intro courses) were built around controlled experiment where the Inference relies on models where the Resonse is:

  • one-dimensional
  • independent
  • identically distributed
  • often normal, second-most often binomial
  • randomly/uniformly sampled

Movement Data is ...

  • one-dimensional: Multi-Dimensional! (X,Y,Time)

    Solution: get comfortable with complex numbers.

  • independent: Highly dependent!

    Solution: get comfortable with correlated / dependent data .

  • identically distributed!: Complex and heterogeneous!

    Solution: behavioral change point analysis / segmentation, hidden markov models.

  • often normal: Circular and skewed distributions!

    Solution: Flexible Likelihood-based modelling,

  • randomly/uniformly sampled: Gappy / irregular / oddly duty-cycled data

    Solution: Continuous movement modeling.

Complex Numbers are Simple!

Complex numbers are a handy bookkeeping tool to package together two dimensions in a single quantity. They expand the one-dimensional (“Real”) number line into a second dimension (“Imaginary”).

IMHO, they are the single most efficient way to deal with 2D vectors, both in math notation and in R code.

\[ Z = X + iY \]

  • \( X \) is the real part.
  • \( Y \) is the imaginary part.

The same number can be written:

\[ Z = R \exp(i \theta) \]

  • \( R \) is the length of the vector: the modulus
  • \( \theta \) is the orientation of the vector: the argument

Fuzzy catterpillar plot

3. Add the rotated steps to the last step

Z.null <- matrix(0, ncol=n-2, nrow=n-2)
for(i in 1:length(Z1))
  Z.null[i,] <- Z1[i] + RelSteps * Rotate[i]

4. Make the fuzzy catterpillar plot

palette(rich.colors(10))
plot(Z, type="o", col=1:10, pch=19, asp=1)
for(i in 1:nrow(Z.null))
  segments(rep(Re(Z1[i]), n-2), rep(Im(Z1[i]), n-2), s
           Re(Z.null[i,]), Im(Z.null[i,]), col=i+1)

plot of chunk unnamed-chunk-19

Using the null-set

The use of the null set is a way to test a narrower null hypothesis that accounts for auto correlation in the data.

The places the animal COULD HAVE but DID NOT go to are pseudo-absences, against which you can fit, e.g., logistic regression models (aka Step-selection functions).

Or just be simple/lazy (like us) and compare observed locations with Chi-squared tests:

EXERCISE: Create a fuzzy-catterpillar plot!

Use (a portion) of the data you analyzed before.

# get pieces
n <- length(Z)
S <- Mod(diff(Z))
Phi <- Arg(diff(Z))
Theta <- diff(Phi)
RelSteps <- complex(mod = S[-1], arg=Theta)

# calculate null set
Z0 <- Z[-((n-1):n)]
Z1 <- Z[-c(1,n)]
Z.null <- matrix(0, ncol=n-2, nrow=n-2)
for(i in 1:length(Z1))
  Z.null[i,] <- Z1[i] + sample(max(length(RelSteps),30)) * Rotate[i]

# plot
plot(Z, type="o", col=1:10, pch=19, asp=1)
for(i in 1:nrow(Z.null))
  segments(rep(Re(Z1[i]), n-2), rep(Im(Z1[i]), n-2), 
           Re(Z.null[i,]), Im(Z.null[i,]), col=i+1)

Fuzzy Polar Bear Catterpillar!