Description Usage Arguments Details Value References See Also Examples
Draw point estimates with their confidence intervals. Used for comparing aggregated values together with their confidence intervals between plates. This method can in most cases not be applied to entire plates but to selected wells only.
1 2 3 4 5 6 7 8 9 10 | ## S4 method for signature 'MOPMX'
ci_plot(object, ...)
## S4 method for signature 'OPMS'
ci_plot(object, as.labels,
subset = opm_opt("curve.param"), ...)
## S4 method for signature 'data.frame'
ci_plot(object, rowname.sep = " ",
prop.offset = 0.04, align = "center", col = "blue", na.action = "warn",
draw.legend = TRUE, legend.field = c(1, 1), x = "topleft", xpd = TRUE,
vline = 0, split.at = param_names("split.at"), crr = 0.75, ...)
|
object |
The data frame method is not normally directly called by
an opm user but via the Otherwise, the data frame should be as exported by the
|
as.labels |
List. Metadata to be joined and used to
draw a legend. Ignored if |
subset |
Character scalar. The parameter to plot.
Only a single one can be selected. See
|
rowname.sep |
Character scalar. Used when joining explanatory columns into row labels of the plots. |
prop.offset |
Numeric scalar. A proportional offset that is added to the vertical range of the panels (after determining the maximum range among all panels to ensure consistency within the plot). |
align |
Character scalar. How to apply the offset; in addition to the default, ‘left’ and ‘right’ are possible. |
col |
Character scalar. Colour to be used. |
na.action |
Character scalar. What to do if a
confidence interval contains |
draw.legend |
Logical scalar. Ignored if there are no explanatory columns. |
legend.field |
Two-element numeric vector. Indicates
the panel in which the legend is drawn. Subsequent
arguments work then relative to this panel. If
|
x |
Legend position, passed to |
xpd |
Logical scalar. Also passed to that function. |
vline |
Numeric scalar with the position on the
y-axis of a vertical line to be drawn. Ignored if
|
crr |
Numeric scalar (column-row-ratio) interpreted as number of columns per number of rows. Determines the arrangement of the subplots. |
... |
Optional arguments passed to |
split.at |
Character vector. See
|
The default placement of the legend is currently not
necessarily very useful. When plotting entire
PM plates, the ‘mar’ parameter of
par
most likely would need to be set to a lower
value, but it is recommended to plot only subsets of
plates, i.e. selected wells.
Character vector describing the plot's legend, returned invisibly, or list of such vectors.
Vaas LAI, Sikorski J, Michael V, Goeker M, Klenk H-P. 2012 Visualization and curve parameter estimation strategies for efficient exploration of Phenotype Microarray kinetics. PLoS ONE 7, e34846.
graphics::plot
Other plotting-functions: heat_map
,
level_plot
, parallel_plot
,
parallelplot
, radial_plot
,
summary
, xy_plot
1 2 3 4 5 6 7 8 | x <- ci_plot(vaas_4[, , 1:3], as.labels = list("Species", "Strain"),
subset = "A", x = "bottomright", legend.field = NULL)
# note that the values on the y axes are drawn to scale
x
stopifnot(is.character(x), identical(length(x), 4L))
# ... and that the return value contains the legend (even if it is not drawn)
## See also the examples for the data-frame method of extract().
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.