View source: R/gdm.subsample.sitepair.R
subsample.sitepair | R Documentation |
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.
subsample.sitepair(spTable, sampleSites)
spTable |
A site-pair table, same as used to fit a |
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. |
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.
This function removes sites, not just site-pairs (rows) from the
site-pair table. This function is called from several of the other functions
within the gdm package, including the plotUncertainty
and
gdm.varImp
functions, for the purposes of subsampling the sites
in the site-pair table.
formatsitepair
##set up site-pair table using the southwest data set
sppData <- southwest[c(1,2,13,14)]
envTab <- southwest[c(2:ncol(southwest))]
sitePairTab <- formatsitepair(sppData, 2, XColumn="Long", YColumn="Lat", sppColumn="species",
siteColumn="site", predData=envTab)
subsample.sitepair(sitePairTab, sampleSites=0.7)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.