reconcile | R Documentation |
reconcile takes two data frames (comm and site) and sorts both into the same order, and then deletes any rows unique to either of the two data.frames, achieving perfect correspondence of the two.
reconcile(comm,site,exlist)
comm |
a community abundance data.frame with samples as rows and species as columns |
site |
a data.frame of site or environmental variables with samples as rows and variables as columns |
exlist |
a switch to control listing specific plots vs simply the number of plots |
reconcile sorts each data.frame alphabetically by row.name, and then compares the list of row.names to identify sample plots common to both data.frames. Sample plots which occur in only one of the data.frames are deleted.
A list object with two elements: comm and site, which are the sorted and reconciled data.frames.
Package labdsv (and many other packages in ecological data analysis) require two data.frames to structure the data. One contains the abundance of species within samples with samples as rows and species as columns. This data.frame I refer to as the sQuotecomm data.frame. The other data.frame contains all the environmental or site data collected at the same samples. This data.frame I refer to as the ‘site’ data.frame. Due to independent subsampling, sorting or editing of the data (often outside of R) the two data.frames often lose the necessary requirement of the identical number of rows, with the rows in exactly the same order. The reconcile() function is a simple remedy to correct this situation while maintaining the maximum amount of data.
David W. Roberts droberts@montana.edu
data(bryceveg) # returns a data.frame of taxon abundance
data(brycesite) # returns a data.frame of site variables
test <- reconcile(bryceveg,brycesite)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.