summary.gdm | R Documentation |
This function summarizes the gdm model object returned from gdm
.
## S3 method for class 'gdm'
summary(object, ...)
object |
A gdm model object resulting from a call to |
... |
Ignored. |
summary prints its output to the R Console window and returns no value.
gdm
##set up site-pair table using the southwest data set
sppData <- southwest[, c(1,2,14,13)]
envTab <- southwest[, c(2:ncol(southwest))]
sitePairTab <- formatsitepair(sppData, 2, XColumn="Long", YColumn="Lat", sppColumn="species",
siteColumn="site", predData=envTab)
##create GDM
gdmMod <- gdm(sitePairTab, geo=TRUE)
##summary of GDM
summary(gdmMod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.