plot.slrm {spatstat} | R Documentation |
Plots a fitted Spatial Logistic Regression model.
## S3 method for class 'slrm' plot(x, ..., type = "intensity")
x |
a fitted spatial logistic regression model.
An object of class |
... |
Extra arguments passed to |
type |
Character string (partially) matching one of
|
This is a method for plot
for fitted spatial logistic
regression models (objects of class "slrm"
, usually obtained
from the function slrm
).
This function plots the result of predict.slrm
.
None.
Adrian Baddeley adrian@maths.uwa.edu.au http://www.maths.uwa.edu.au/~adrian/ and Rolf Turner r.turner@auckland.ac.nz
data(copper) X <- copper$SouthPoints Y <- copper$SouthLines Z <- distmap(Y) fit <- slrm(X ~ Z) plot(fit) plot(fit, type="link")