| plot.slrm {spatstat.model} | 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.Baddeley@curtin.edu.au and Rolf Turner r.turner@auckland.ac.nz
X <- copper$SouthPoints
Y <- copper$SouthLines
Z <- distmap(Y)
fit <- slrm(X ~ Z)
plot(fit)
plot(fit, type="link")