IPModel {phenology}R Documentation

Estimates the pattern of internesting intervals for a set of parameters.

Description

This function fits a model of internesting period.
The parameters are:

Usage

IPModel(
  par,
  parallel = TRUE,
  limits = list(meanIP = 40, meanECF = 4, minIP = 15, sdAbort = 1, sdIP = 1, sdECF = 1,
    DeltameanIP = 0.5, maxDays = 365)
)

Arguments

par

Set of parameters

parallel

If TRUE, will use parallel computing

limits

A list of limits for various parameters

Details

IPModel estimates the pattern of internesting intervals for a set of parameters.

Value

Return a list with two elements.

Author(s)

Marc Girondot marc.girondot@gmail.com

See Also

Other Model of Internesting Period: IPFit(), IPPredict(), plot.IP(), summary.IP()

Examples

## Not run: 
library(phenology)
# Example
par <- c(meanIP = 9.8, 
sdIP = 0.1, 
minIP = 7, 

pAbort = -logit(0.1), 
meanAbort = 2, 
sdAbort = 0.05, 

pCapture = -logit(0.8), 

meanECF = 4, 
sdECF = 0.1)

model <- IPModel(c(par, N=10000))

plot(model)


## End(Not run)

[Package phenology version 9.1 Index]