View source: R/plot.predict.slmfit.R
plot.predict.slmfit | R Documentation |
Creates a default map for the predictions of unobserved sites.
Note that all predictions are stored in a data frame in the output
of predict.slmfit()
. Therefore, if a user
would like to create his or her own plot, they can easily do so using
this data frame.
## S3 method for class 'predict.slmfit'
plot(x, ...)
x |
the output of the |
... |
further arguments passed to or from other methods. |
a plot with x-coordinates on the x-axis and y-coordinates on the y-axis that is coloured by predictions, with points with an X denoting that a site was sampled and filled circles denoting unsampled sites.
data(exampledataset) ## load a toy data set
slmobj <- slmfit(formula = counts ~ pred1 + pred2, data = exampledataset,
xcoordcol = 'xcoords', ycoordcol = 'ycoords', areacol = 'areavar')
predobj <- predict(slmobj)
plot(predobj)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.