Learn R Programming

adespatial (version 0.1-1)

plot.orthobasisSp: Function to display Moran's Eigenvector Maps (MEM) and other spatial orthogonal bases

Description

This function allow to plot or map orthogonal bases

Usage

# S3 method for orthobasisSp
plot(x, SpORcoords, pos = -1, plot = TRUE,
  match.ID = FALSE, ...)

Arguments

x

an object of class orthobasisSp

SpORcoords

either a Spatial* object or a matrix with geographic coordinates

pos

an integer indicating the position of the environment where the data are stored, relative to the environment where the function is called. Useful only if <U+2018>storeData<U+2019> is <U+2018>FALSE<U+2019>

plot

a logical indicating if the graphics is displayed

match.ID

a logical indicating if names of geographic entities match rownames of the orthobasisSp object

additional graphical parameters (see <U+2018>adegpar<U+2019> and <U+2018>trellis.par.get<U+2019>)

Value

an object of class ADEgS, generated by the s.Spatial function of the adegraphics package

See Also

s.Spatial

Examples

Run this code
# NOT RUN {
if(require("ade4", quietly = TRUE) & require("spdep", quietly = TRUE)){
data(mafragh)
me <- mem(nb2listw(mafragh$nb))

if(require("adegraphics", quietly = TRUE)){
plot(me[,1:6], mafragh$xy)
plot(me[,1:6], mafragh$Spatial) 
}
}
        
# }

Run the code above in your browser using DataLab