We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The function plotAbundance is used for handy visualization of community composition.
plotAbundance
library(mia) data(GlobalPatterns) tse <- GlobalPatterns[1:1000,] plotAbundance(tse, abund_values="counts", rank = "Phylum")
It only works with the defined ranks, however. This leads to error:
rowData(tse)$Strain <- sample(letters[1:5], nrow(tse), replace=TRUE) plotAbundance(tse, abund_values="counts", rank = "Strain")
-> Error: 'rank' must be a value from 'taxonomyRanks()'
This is restrictive because it is often useful to visualize also other types of groupings.
Just not providing the rank argument (relying on the default) did not seem to help either.
rank
Is this intended, or is there a way to circumvent this issue?
Related to microbiome/mia#219
The text was updated successfully, but these errors were encountered:
Related to microbiome/mia#325 also
Sorry, something went wrong.
Yes, the grouping could be more general (just a column from rowData)
Related to #132
antagomir
TuomasBorman
Daenarys8
No branches or pull requests
The function
plotAbundance
is used for handy visualization of community composition.It only works with the defined ranks, however. This leads to error:
-> Error: 'rank' must be a value from 'taxonomyRanks()'
This is restrictive because it is often useful to visualize also other types of groupings.
Just not providing the
rank
argument (relying on the default) did not seem to help either.Is this intended, or is there a way to circumvent this issue?
Related to microbiome/mia#219
The text was updated successfully, but these errors were encountered: