Description Usage Arguments Examples
Assign a new OTU Table to x
1 2 3 4 5 6 7 8 9 10 |
x |
(Required). |
value |
(Required).
|
1 2 3 4 5 6 7 8 9 10 11 12 13 | # data(GlobalPatterns)
# # An example of pruning to just the first 100 taxa in GlobalPatterns.
# ex2a <- prune_taxa(taxa_names(GlobalPatterns)[1:100], GlobalPatterns)
# # The following 3 lines produces an ex2b that is equal to ex2a
# ex2b <- GlobalPatterns
# OTU <- otu_table(GlobalPatterns)[1:100, ]
# otu_table(ex2b) <- OTU
# identical(ex2a, ex2b)
# print(ex2b)
# # Relace otu_table by implying the component in context.
# ex2c <- GlobalPatterns
# otu_table(ex2c) <- ex2b
# identical(ex2a, ex2c)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.