Learn R Programming

gdm (version 1.6.0-1)

summary.gdm: Summarize a Fitted Generalized Dissimilarity Model

Description

This function summarizes the gdm model object returned from gdm.

Usage

# S3 method for gdm
summary(object, ...)

Value

summary prints its output to the R Console window and returns no value.

Arguments

object

A gdm model object resulting from a call to gdm.

...

Ignored.

See Also

gdm

Examples

Run this code
##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)

Run the code above in your browser using DataLab