plot.lisaPerm: Cluster Map

View source: R/plot.lisaPerm.R

plot.lisaPermR Documentation

Cluster Map

Description

Based on the Local Moran Statistic, this function plots a clusters' map

Usage

## S3 method for class 'lisaPerm'
plot(x,y, signif=.05, legend.title='',lty=1,lwd=1,fillBorder='black',box.lwd=1, ...)

Arguments

x

An object of class lisaPerm as returned by the functions lisa.perm or bilisa.perm

y

A Spatial object supported by the sp package. Usually, an object of class SpatialPolygons or SpatialPolygonsDataFrame

signif

Significance cut off value

legend.title

Title of the legend key

lty

see par

lwd

see par

fillBorder

Color of the border line

box.lwd

Line width of the outline box

...

Further arguments passed to plot

Details

This function plots a cluster map.

Author(s)

Osmar Leandro Loaiza Quintero

References

Anselin, Luc (1995). Local Indicators of Spatial Association. Geographical Analysis

See Also

lisa.perm, bilisa.perm

Examples



data(usinc, package='spdyn')

require(spdep)

lw<-nb2listw(
		poly2nb(usinc,queen=TRUE),style='W'
	)
	
mylisa <- lisa.perm(usinc$X2009,listw=lw)

plot(mylisa,usinc)



spdyn documentation built on Oct. 28, 2024, 3 p.m.