1 | EstimateMortality(state, parms)
|
state |
|
parms |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | ##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
function (state, parms)
{
wSx1000 <- parms[["wSx1000"]]
mF <- parms[["mF"]]
mR <- parms[["mR"]]
mS <- parms[["mS"]]
thinPower <- parms[["thinPower"]]
oldW <- state[["Wsbr"]]
oldN <- state[["N"]]
if (oldW > (wSx1000 * (1000/oldN)^thinPower)) {
N.new <- optimize(f = function(x) ((oldW - mS * (oldN -
x) * oldW/oldN) - (wSx1000 * (1000/x)^thinPower *
0.001) * x)^2, interval = c(1, 5000))$minimum
N <- min(oldN, N.new)
}
else {
N <- oldN
}
Ndead <- oldN - N
if (Ndead > 0) {
Wl <- state[["Wl"]]
Wsbr <- oldW
Wr <- state[["Wr"]]
Wdl <- mF * Ndead * (Wl/N)
Wds <- mS * Ndead * (Wsbr/N)
Wdr <- mR * Ndead * (Wr/N)
state[["Wl"]] <- Wl - Wdl
state[["Wsbr"]] <- Wsbr - Wds
state[["Wr"]] <- Wr - Wdr
state[["N"]] <- state[["N"]] - Ndead
}
else {
Wdl <- 0
Wds <- 0
Wdr <- 0
}
state[c("Ndead", "Wdl", "Wds", "Wdr")] <- c(Ndead, Wdl, Wds,
Wdr)
return(state)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.