Learn R Programming

capwire (version 1.1.4)

classToInd: Convert a table of capture class data into a table of individuals

Description

Converts a data frame where individuals are grouped by capture class into a data frame consisting of individuals and their associated capture counts.

Usage

classToInd(x)

Arguments

x
A two-column data frame with the first column specifiying the capture class (where all individuals in class i were caught i times) and the second column specifying the number of individuals in this capture class.

Value

A two-column data frame with the first column specifiying the individual IDs and the second column specifying the number of times each individual was captured. Note here that the individual IDs are arbitrarily defined.

Details

This is primarily used as an internal function through capwire

References

Pennell M.W., C.R. Stansbury, L.P. Waits and C.R. Miller. submitted. capwire: A R Package for Estimating Population Census Size from Non-Invasive Genetic Sampling

See Also

buildIndTable, buildClassTable, indToClass

Examples

Run this code
## create a vector of capture counts

counts <- c(1,1,1,2,2,2,3,3,4)

## make into a table of classes

class.data <- buildClassTable(counts)

## convert to table of individuals

data <- classToInd(class.data)

data

Run the code above in your browser using DataLab