Description Usage Arguments Value Examples
Plots the taxa proportions for every group.
1 2 |
estPi |
The results for either MLE or MOM from the function 'Est.Pi'. |
errorBars |
A boolean to display the error bars or not. |
logScale |
A boolean to log the y scale or not. |
main |
A string to be used as the plots title. |
ylab |
A string to be used as the plots y-axis title. |
A plot of the pi vectors for every group.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ## Not run:
data(saliva)
data(throat)
data(tonsils)
### Combine the data sets into a single list
group.data <- list(saliva, throat, tonsils)
### Get PI using MLE with CI
mle <- Est.PI(group.data)$MLE
### Plot with Error Bars
Plot.PI(mle)
### Plot without Error Bars
Plot.PI(mle, FALSE)
### Plot with Error Bars and scaling
Plot.PI(mle, TRUE, TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.