Description Usage Arguments Value Author(s) See Also Examples
View source: R/compareTaxaGroups.R
Create variable distribution plots between 2 groups of taxa for a selected gene.
1 | varDistTaxPlot(data, plotParameters)
|
data |
dataframe for plotting. Last column indicates what type of taxon group (in- or out-group). The first (or first 2) column contains values of the variables. See ?dataVarDistTaxGroup |
plotParameters |
plot parameters, including size of x-axis, y-axis, legend and title; position of legend ("right", "bottom" or "none"); mean/median point; names of in-group and out-group; and plot title. NOTE: Leave blank or NULL to use default values. |
Distribution plots as a grob (gtable) object. Use grid.draw to plot.
Vinh Tran tran@bio.uni-frankfurt.de
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | data("mainLongRaw", package="PhyloProfile")
data <- mainLongRaw
inGroup <- c("ncbi9606", "ncbi10116")
variable <- colnames(data)[c(4, 5)]
plotDf <- dataVarDistTaxGroup(data, inGroup, "101621at6656", variable)
plotParameters <- list(
"xSize" = 12,
"ySize" = 12,
"titleSize" = 15,
"legendSize" = 12,
"legendPosition" = "right",
"mValue" = "mean",
"inGroupName" = "In-group",
"outGroupName" = "Out-group",
"title" = "101621at6656"
)
g <- varDistTaxPlot(plotDf, plotParameters)
grid::grid.draw(g)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.