View source: R/parsePhyloProfile.R
calcPresSpec | R Documentation |
Calculate percentage of present species in each super taxon
calcPresSpec(profileWithTax, taxaCount)
profileWithTax |
data frame of main PhyloProfile input together with their taxonomy info (see ?profileWithTaxonomy) |
taxaCount |
number of species occur in each supertaxon (e.g. phylum or kingdom) |
A data frame with
Vinh Tran tran@bio.uni-frankfurt.de
profileWithTaxonomy
for a demo input data
# NOTE: for internal testing only
library(dplyr)
data("profileWithTaxonomy", package="PhyloProfile")
taxaCount <- profileWithTaxonomy %>% dplyr::count(supertaxon)
taxaCount$n <- 1
calcPresSpec(profileWithTaxonomy, taxaCount)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.