mink: American mink _Neovison vison_ data.

minkR Documentation

American mink Neovison vison data.

Description

The mink data is the data analyzed by Fuller et al. (2016) in their Ecological Applications paper, with 2 objects illustrating fitted models.

Usage

data("mink")

Format

The data include 5 lists, mink.sf (scrFrame), mink.cs (cost surface), mink.ss (state-space object), Mecol (ecological distance model fit object; see Examples), and mEuc (Euclidean distance model fit object; see Examples).

Source

Fuller AK, Sutherland CS, Royle JA, Hare MP. Estimating population density and connectivity of American mink using spatial capture?recapture. Ecological Applications. 2016 Jun 1;26(4):1125-35.

Examples


  library(oSCR)
  data(mink)

  # Compare Ecological and Euclidean models using a well supported model structure

  # desnity: D ~ D2city
  # detetection: p ~ sex
  # sigma: sig ~ sex

  #Euclidean
  mEuc <- oSCR.fit(model = list(D~D2city, p0~sex, sig~sex),
                   scrFrame= mink.sf, ssDF = mink.ss, trimS=2,
                   distmet = "euc")

  #Ecological
  mEcol <- oSCR.fit(model = list(D~D2city, p0~sex, sig~sex, asu~d2water),
                    scrFrame= mink.sf, ssDF = mink.ss, costDF = mink.cs,
                    trimS=2, distmet = "ecol")

  (fl <- fitList.oSCR(list(mEuc,mEcol),rename=T))
  (ms <- modSel.oSCR(fl))
  ms$aic
  ms$coef

jaroyle/oSCR documentation built on Sept. 23, 2023, 12:46 p.m.