marray {R2ucare} | R Documentation |
m-array: table of first recaptures
Description
This function calculates the m-array, the number of released and never seen again individuals; deals with more than 1 group
Usage
marray(X, freq)
Arguments
X |
a matrix of encounter histories over K occasions |
freq |
is a vector with the number of individuals having the corresponding encounter history |
Value
This function returns a list with R the number of released individuals (K-1 x g matrix), m the m-array (K-1 x K-1 x g array) with upper triangle filled only and never the number of individuals never recaptured (K-1 x g matrix).
Author(s)
Olivier Gimenez <olivier.gimenez@cefe.cnrs.fr>,Jean-Dominique Lebreton, RĂ©mi Choquet, Roger Pradel
Examples
# read in the classical dipper dataset
dipper = system.file("extdata", "ed.inp", package = "R2ucare")
dipper = read_inp(dipper,group.df=data.frame(sex=c('Male','Female')))
# Get encounter histories, counts and groups:
dip.hist = dipper$encounter_histories
dip.freq = dipper$sample_size
dip.group = dipper$groups
# get female data
mask = (dip.group == 'Female')
dip.fem.hist = dip.hist[mask,]
dip.fem.freq = dip.freq[mask]
# get number of released individuals (R),
# the m-array (m) and
# the number of individuals never seen again (never)
marray(dip.fem.hist,dip.fem.freq)
[Package R2ucare version 1.0.2 Index]