Nothing
## ------------------------------------------------------------------------
# Part 1: The likelihood function
triangular.like <- function(a, dist, covars=NULL,
pointSurvey=FALSE, w.lo=0, w.hi,
series="", expansions=0, scale=TRUE){
L <- (2/a)*(1 - dist/a)
L[ L < 0 ] <- 0
L
}
## ------------------------------------------------------------------------
# Part 2: The starting values, limits, and names of parameters in the likelihood
triangular.start.limits <- function(dist, expansions, w.lo, w.hi){
list(start=max(dist)*.75,
lowlimit=w.lo,
highlimit=w.hi,
names="Max")
}
## ---- fig.width=6, fig.height=4------------------------------------------
# A function to generate triangular random deviates
rtriang <- function(n, b){
x <- seq(0, b, length=500)
CDF <- 2*x/b - (x/b)^2
u <- runif(n)
r <- approx( CDF, x, xout=u )$y
}
# Simulated vector of distances
set.seed(123)
d <- rtriang(500, 100) # true b = 100
hist(d)
## ------------------------------------------------------------------------
# Fit detection function with user-defined "triangular" likelihood
# Requires the F.dfunc.estim function from Rdistance
require(Rdistance)
tri.dfunc <- dfuncEstim( d~1, likelihood="triangular", w.hi=150 )
tri.dfunc
## ---- fig.width=6, fig.height=4------------------------------------------
plot(tri.dfunc)
AIC(tri.dfunc)
## ------------------------------------------------------------------------
tri.dfunc$g.x.scl*tri.dfunc$param / 2
## ------------------------------------------------------------------------
ESW(tri.dfunc)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.