You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be cool to be able have a function to produce tables like this from taxmap objects for use in Rmarkdown documents and publications:
It could output a table produced by kableExtra with a command like the following:
tax_kable(my_taxmap_obj,
ranks= c("Phylum", "Class", "Order", "Family", "Genus"),
data= c("OTUs represented"="otu_count", "All roots"="root_prop", "All soils"="soil_prop"),
...)
Things like "root_prop" would be user-specific variables accessible by all_names (table columns in the taxmap object) and ... would be passed to kable or kableExtra.
The text was updated successfully, but these errors were encountered:
I think it would just need knitr and kableExtra. I imagine most people would have knitr anyway, but I am not sure how many dependencies kableExtra has.
I was thinking about separating the plotting of heat trees from metacoder into a new package focused on visualization of hierarchical data, and reserving metacoder for microbiome community ecology type stuff. If not in the taxa package, this might be good in the package that heat trees go in.
It would be cool to be able have a function to produce tables like this from
taxmap
objects for use in Rmarkdown documents and publications:It could output a table produced by
kableExtra
with a command like the following:Things like "root_prop" would be user-specific variables accessible by
all_names
(table columns in thetaxmap
object) and...
would be passed tokable
orkableExtra
.The text was updated successfully, but these errors were encountered: