metacoder (version 0.1.3)

transmute_taxa: Replace columns in taxmap objects

Description

Replace columns of taxon_data in taxmap objects. Any column name that appears in taxon_data(.data) can be used as if it was a vector on its own. See transmute for inspiration and more information.

Usage

transmute_taxa(.data, ...)

Arguments

.data
...

One or more column names to add to the new object. Newly created columns can be referenced in the same function call.

Value

An object of type taxmap

See Also

Other dplyr-like functions: arrange_obs, arrange_taxa, filter_obs, filter_taxa, mutate_obs, mutate_taxa, sample_frac_obs, sample_frac_taxa, sample_n_obs, sample_n_taxa, select_obs, select_taxa, transmute_obs

Examples

Run this code
# NOT RUN {
# Replace all taxon columns with new columns
transmute_taxa(unite_ex_data_3, x = 1, y = x+2)
  
# }

Run the code above in your browser using DataCamp Workspace