get_children | R Documentation |
Retrieve all children or all parents of a queried taxon concept.
get_children(taxlist, ...)
## S3 method for class 'taxlist'
get_children(taxlist, ConceptID, ...)
get_parents(taxlist, ...)
## S3 method for class 'taxlist'
get_parents(taxlist, ConceptID, ...)
taxlist |
A taxlist object. |
... |
Further arguments passed among methods. |
ConceptID |
Concept IDs for selecting parents or children or a subset of
|
This function produces subsets of taxlist objects
including all children or parents of queried taxon concepts.
Multiple concepts can be queried in these function.
The argument ConceptID
can be a vector of concept IDs or a subset of
the input taxlist
object.
A taxlist object with a subset including requested concepts with children or parents.
Miguel Alvarez kamapu78@gmail.com
## Subset with family Ebenaceae and children
Ebenaceae <- subset(x = Easplist, subset = TaxonName == "Ebenaceae")
Ebenaceae
Ebenaceae <- get_children(Easplist, Ebenaceae)
Ebenaceae
## Get parents of Diospyros tricolor
Diostri <- subset(x = Easplist, subset = TaxonConceptID == 52403,
slot = "relations")
Diostri
Diostri <- get_parents(Easplist, Diostri)
Diostri
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.