entropy: Extract model entropy

Description Usage Arguments See Also Examples

View source: R/entropy.R

Description

Extract the entropy of a Maxent model from a lambdas objects generated by parse_lambdas().

Usage

1

Arguments

x

A lambdas object returned by parse_lambdas().

See Also

parse_lambdas() project()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
# Below we use the dismo::maxent example to fit a Maxent model:
if (require(dismo) && require(rJava) && 
    file.exists(system.file('java/maxent.jar', package='dismo'))) {
  fnames <- list.files(system.file('ex', package="dismo"), '\\.grd$', 
                       full.names=TRUE )
  predictors <- stack(fnames)
  occurrence <- system.file('ex/bradypus.csv', package='dismo')
  occ <- read.table(occurrence, header=TRUE, sep=',')[,-1]
  me <- maxent(predictors, occ, path=file.path(tempdir(), 'example'), 
               factors='biome')

  # ... and then parse the lambdas information:
  lam <- parse_lambdas(me)
  entropy(lam)
}

johnbaums/rmaxent documentation built on July 3, 2020, 5:36 p.m.