Learn R Programming

gdm (version 1.4.2.2)

removeSitesFromSitePair: Remove Random Sites from Site-Pair Table

Description

Randomly selects a number of sites from a given site-pair table and removes them from the site-pair table. It will remove all instances of the sites randomly selected to be removed in both s1 and s2 positions.

Usage

removeSitesFromSitePair(spTable, sampleSites)

Arguments

spTable

A site-pair table, same as used to fit a gdm.

sampleSites

The fraction (0-1, though a value of 0 would be silly, wouldn't it?) of sites to retain from the full site-pair table. If less than 1, this argument will completely remove a fraction of sites such that they are not used in the permutation routines.

Value

A site-pair table, such as one created by formatsitepair, ideally smaller than the one given. In the very rare case where the function determines not to remove any sites, or should the sampleSites argument be 1, then the function will return the full site-pair table.

See Also

formatsitepair

Examples

Run this code
# NOT RUN {
##fit table environmental data
##sets up site-pair table, environmental tabular data
load(system.file("./data/gdm.RData", package="gdm"))
sppData <- gdmExpData[c(1,2,13,14)]
envTab <- gdmExpData[c(2:ncol(gdmExpData))]
sitePairTab <- formatsitepair(sppData, 2, XColumn="Long", YColumn="Lat", sppColumn="species", 
	siteColumn="site", predData=envTab)

removeSitesFromSitePair(sitePairTab, sampleSites=0.7)
# }

Run the code above in your browser using DataLab