dv.plot plots DV vs Time data.
dv.plot(
df,
xvar = "Time",
yvar = "Conc",
obsLog = FALSE,
myXlab = "Time",
myYlab = "Concentration",
color = NULL,
group = NULL,
guide = TRUE,
onlyLin = FALSE,
onlyLog = FALSE,
XYlog = FALSE,
STRATY = ".",
STRATX = ".",
myYBr = waiver(),
myXBr = waiver(),
myYBrLog = waiver(),
myXBrLog = waiver(),
myYlim = NULL,
myXlim = NULL,
myYlimLog = NULL,
myXlimLog = NULL,
title = NULL
)returns a graphical object created by arrangeGrob function
A data frame to be used for the plot
is the independent variable, default is "TIME"
is the dependent variable, default is "DV"
is a logical variable (TRUE, FALSE). If
TRUE, concentration in observed data is assumed to be in logarithmic
scale. Default is FALSE
is the x-axis label, default is "Time"
is the y-axis label, defaults is "Concentration"
is the column name of the color stratification variable, e.g. "DOSEF". Default is NULL
is the column name of the variable used to group data, default is "ID
if TRUE, show guide, default is TRUE
if TRUE, presents only the linear version of the plot, default is FALSE
if TRUE, presents only the log version of the plot, default is FALSE
if TRUE, both X and Y axes of the log version of the plot is shown on the logarithmic scale; if FALSE, only the Y-axis is shown on the logarithmic scale. Default is FALSE.
is the row stratification variable, default is "."
is the column stratification variable, default is "."
are the breaks for the Y-axis for the linear plot
are the breaks for the X-axis for the linear plot
are the breaks for the Y-axis for the log plot
are the breaks for the X-axis for the log plot
sets Y-axis limits for the linear plot
sets X-axis limits for the linear plot
sets the Y-axis limit for the log plot
sets the X-axis limit for the log plot
The title of the plot.
dv.plot plots DV vs Time data