R语言【taxa】——internodes():获得中间节点

Package taxa version 0.4.2


Description

获取每个分类单元或其他每个分类单元值的节点间索引。节间是一个恰好有一个上级分类群和一个下级分类群的分类群。这些分类群可以在不丢失剩余分类群之间关系信息的情况下被移除。


Usage

internodes(x)

Argument

参数【x】:用来获取中间节点的对象,比如一个 taxonomy 对象。


Example

x <- taxonomy(c('Carnivora', 'Felidae', 'Panthera', 'Panthera leo',
                'Panthera tigris', 'Ursidae', 'Ursus', 'Ursus arctos'),
              supertaxa = c(NA, 1, 2, 3, 3, 1, 6, 7))

x

1: Carnivora
├─2: Felidae
│ └─3: Panthera
│   ├─4: Panthera leo
│   └─5: Panthera tigris
└─6: Ursidae
  └─7: Ursus
    └─8: Ursus arctos
> internodes(x)
[1] 2 6 7

你可能感兴趣的:(taxa,r语言,数据库)