spatial.plot: c

Usage Arguments Examples

View source: R/spatial.plot.R

Usage

1
spatial.plot(x, y, add = TRUE, cx = 1)

Arguments

x
y
add
cx

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (x, y, add = TRUE, cx = 1) 
{
    nc <- as.numeric(cut(y, 20))
    if (!add) 
        plot(x, pch = " ")
    points(x, pch = 20, col = terrain.colors(20)[nc], cex = cx)
    image.scale(y, col = terrain.colors(20))
  }

jaroyle/SCRbayes documentation built on May 18, 2019, 4:48 p.m.