View source: R/plot-simulated-time-profile.R
plotSimulatedTimeProfile | R Documentation |
Producing Time Profile plots
plotSimulatedTimeProfile(
data = NULL,
metaData = NULL,
dataMapping = NULL,
plotConfiguration = NULL,
plotObject = NULL
)
data |
A data.frame to use for plot. |
metaData |
A named list of information about |
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()
,
plotTimeProfile()
,
plotTornado()
# Produce a Time profile plot with simulated data
simTime <- seq(1, 10, 0.1)
simData <- data.frame(
x = simTime,
y = 10 * exp(-simTime),
ymin = 8 * exp(-simTime),
ymax = 12 * exp(-simTime)
)
plotSimulatedTimeProfile(
data = simData,
dataMapping = TimeProfileDataMapping$new(x = "x", y = "y", ymin = "ymin", ymax = "ymax")
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.