Displaying 1 result from an estimated 1 matches for "topo9".
Did you mean:
topo
2004 Jun 03
1
GAM question
...ll, weighted
> topo8 <- gam(PA ~ s(SLOPE10) + s(ASPECT10) + s(GYADEMPLUS) + s(TRI) +
s(HLI) + s(PLAN10) + s(PROF10), family=binomial, data=topox, weights = w0)
Warning in eval(expr, envir, enclos) : non-integer #successes in a
binomial glm!
Error: cannot allocate vector of size 60865 Kb
> topo9 <- glm(PA ~ SLOPE10 + ASPECT10 + GYADEMPLUS + TRI + HLI + PLAN10 +
PROF10, family=binomial, data=topox, weights = w0)
Warning in eval(expr, envir, enclos) : non-integer #successes in a
binomial glm!
> # trial, weighted, slope only
> topo10 <- gam(PA ~ s(SLOPE10), family=binomial, data=...