Description Usage Arguments Author(s) References Examples
Simple generic limiting factor based model, in the tradition of the PLANTGRO model (Hackett, 1991)
1 2 |
x |
numeric matrix with driver variables (each column has values for the variables). Values have to be in ascending order |
y |
numeric matrix with responses (between 0 and 1), one column for each column in |
extrapolate |
logical. Should the model extrapolate beyond the extremes of x? If |
... |
Additional arguments. None implemented |
Robert J. Hijmans
Hackett, C., 1991. PLANTGRO, a software package for coarse prediction of plant growth. CSIRO, Melbourne, Australia
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | # get predictor variables
fnames <- list.files(path=paste(system.file(package="dismo"), '/ex', sep=''),
pattern='grd', full.names=TRUE )
env <- stack(fnames)
bio1 <- c(200,250,400,450)
bio12 <- c(0,1000, 3000, 4000)
r1 <- c(0, 1, 1, 0)
r2 <- c(0, 0, 1, 1)
x <- cbind(bio1, bio12)
y <- cbind(r1, r2)
e <- ecolim(x, y)
plot(e, lwd=2, col='red')
p <- predict(e, env)
plot(p)
# no extrapolation:
ef <- ecolim(x, y, extrapolate=FALSE)
pf <- predict(ef, env)
plot(pf)
occurence <- paste(system.file(package="dismo"), '/ex/bradypus.csv', sep='')
occ <- read.table(occurence, header=TRUE, sep=',')[,-1]
fold <- kfold(occ, k=5)
occtest <- occ[fold == 1, ]
occtrain <- occ[fold != 1, ]
bg <- randomPoints(env, 1000)
## Not run:
# An approach to optimize the values based on
# some known presences and (here random) absences
# for the same species as in the maxent example
# intial parameters
v <- c(200, 250, 400, 450, 0, 1000, 3000, 4000)
# function to be minimized
f <- function(p) {
x[] <- p
# numbers must go up
if ( any(x[-1,] < x[-nrow(x), ]) ) return(Inf)
e <- ecolim(x, y)
# we are minimizing, hence 1-AUC
1-evaluate(e, p=occtrain, a=bg, x=env)@auc
}
# patience...
set.seed(0)
z <- optim(v, f)
x[] <- z$par
eco <- ecolim(x, y)
evaluate(eco, p=occtest, a=bg, x=env)
set.seed(0)
pwd <- pwdSample(occtest,bg,occtrain)
ptest <- occtest[!is.na(pwd),]
atest <- bg[na.omit(pwd),]
evaluate(eco, p=ptest, a=atest, x=env)
p2 <- predict(eco, env)
plot(p2)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.