score: Score function for the Spatial Naive Bayes Model

Description Usage Arguments Value Author(s) References See Also Examples

Description

score is a function to estimates score parameter for the Spatial Naive Bayes Model.

Usage

1
2
## S4 method for signature 'SpNaBaProbs'
score(x.probs)

Arguments

x.probs

A SpNaBaProbs object.

Value

score: An object of class SpNaBaScore.

Author(s)

Enrique Del Callejo Canal (edelcallejoc@gmail.com), based on implemented algortihms in web platform SPECIES (see References).

References

http://species.conabio.gob.mx/

See Also

SpNaBaProbs, SpNaBa-methods

Examples

 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
# Using the function id_pts() for spatial data --------

library(sp)
library(rgeos)
library(rgdal)
library(raster)

# Loading data
data(Mex0)
data(mammals)

# Generating de grid from Mex0 data
Mex0.grd<-grd_build(Mex0)

# Identification points of mammals
x.mat<-id_pts(grd = Mex0.grd, pts = mammals)

# Without target declaration --------------------------

system.time(x.counts <- counts(x.mat))

# With target declaration -----------------------------

x.counts <- counts(x.mat, target = 1:10)

# Probability matrices -----------------------------------
x.probs <- probs(x.counts, fac.lap = 0.1)

# Score parameter -----------------------------------

x.score <- score(x.probs)

edelcallejoc/rspecies documentation built on May 27, 2019, 7:25 a.m.