Dear Robert. Did work perfectly!
On Mar 13, 1:57 pm, "Robert J. Hijmans" <
r.hijm...@gmail.com> wrote:
> Fernando,
>
> It is probably good to mention that your are using the maxent function in R
> package dismo (that calls the maxent java program)
>
> These observations are not used in the model. To identify and remove them,
> you can do something like:
>
> v <- extract(x, p)
> # which rows (points) have NA values?
> i <- which(apply(
is.na(v), 1, sum) > 0)
> # remove these from p
> p <- p[-i, ]
>
> Robert
>