plotTornado | R Documentation |
Producing tornado plots
plotTornado(
data = NULL,
metaData = NULL,
x = NULL,
y = NULL,
sorted = NULL,
colorPalette = NULL,
bar = TRUE,
dataMapping = NULL,
plotConfiguration = NULL,
plotObject = NULL
)
data |
A data.frame to use for plot. |
metaData |
A named list of information about |
x |
Numeric values to plot along the |
y |
Character values to plot along the |
sorted |
Optional logical value defining if |
colorPalette |
Optional character values defining a |
bar |
Optional logical value setting tornado plot as bar plot instead of scatter plot. |
dataMapping |
A |
plotConfiguration |
An optional |
plotObject |
An optional |
A ggplot
object
Other molecule plots:
plotBoxWhisker()
,
plotCumulativeTimeProfile()
,
plotDDIRatio()
,
plotGrid()
,
plotHistogram()
,
plotObsVsPred()
,
plotObservedTimeProfile()
,
plotPKRatio()
,
plotPieChart()
,
plotQQ()
,
plotResVsPred()
,
plotResVsTime()
,
plotSimulatedTimeProfile()
,
plotTimeProfile()
# Produce a tornado plot
plotTornado(x = c(2, -1, 3), y = c("A", "B", "C"))
# Produce a tornado plot as scatter plot
plotTornado(x = c(2, -1, 3), y = c("A", "B", "C"), bar = FALSE)
# Produce a tornado plot as is (no sorting)
plotTornado(x = c(2, -1, 3), y = c("A", "B", "C"), sorted = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.