Learn R Programming

labdsv (version 2.1-0)

dropplt: Dropping Plots with Missing Values From Taxon and Site Data Frames

Description

Looks for plots which have missing values in site or environment data, and deletes those plots from both the community and site data frames.

Usage

dropplt(comm,site,which=NULL)

Value

produces a list with two components:

site

the new site data frame

Arguments

comm

a community data frame with samples as rows and species as columns

site

a site or environment data frame with samples as rows and variables as columns

which

a switch to specify specific plots to drop from both data.frames

Author

David W. Roberts droberts@montana.edu

Details

First looks to see that the row names of the community data frame and the site or environment data frame are identical. If not, it prints an error message and exits. If which is NULL, it then looks at the site or environment data frame for plots or samples that have missing values, and deletes those plots from both the community and site data frames. Alternatively, if which is a numeric scalar or vector it deletes the specified plots from both the community and site data.frames.

Examples

Run this code
data(bryceveg)  # returns a data frame called bryceveg
data(brycesite) # returns a data frame called brycesite
demo <- dropplt(bryceveg,brycesite)
newcomm <- demo$comm
newsite <- demo$site

Run the code above in your browser using DataLab