strain: Parse taxon or taxondf objects by a range of names

Description Usage Arguments Details Value Examples

View source: R/strain.R

Description

Parse taxon or taxondf objects by a range of names

Usage

1
strain(.data, ...)

Arguments

.data

Input, object of class taxon

...

Logical predicates. Multiple conditions are combined with &. See Details.

Details

Example predicates:

Value

A single or list of taxon class objects

Examples

1
2
3
4
5
6
7
# operating on `taxon` objects
out <- make_taxon(genus="Poa", epithet="annua", authority="L.",
   family='Poaceae', clazz='Poales', kingdom='Plantae', variety='annua')
out %>% strain(. < family)
out %>% strain(. < genus)
out %>% strain(. > family)
out %>% strain(. < family)

binomen documentation built on May 30, 2017, 7:38 a.m.