lines.PostHoc {postHoc} | R Documentation |
Lines method for objects of class PostHoc
Description
Lines method for objects of class PostHoc
Usage
## S3 method for class 'PostHoc'
lines(
x,
col = "black",
labelsCol = "black",
space2max = 0,
UseGrouping = TRUE,
ylim = NULL,
main = "",
ylab = "",
xlab = "",
lty = 1,
drawAxis = TRUE,
rightshift = 0,
additionalTextGrouping = "",
superpose = FALSE,
cex.grouping = 1,
cex.ticks = 0.1,
cex.lab = 1,
ylog = FALSE,
...
)
Arguments
x |
an object of class PostHoc to be printed |
col |
the colour of the lines (default = "black") |
labelsCol |
the colour of the bars (default = "black") |
space2max |
space between the upper limit of the confidence interval and the label¨ |
UseGrouping |
should the grouping be added to the plots (default = TRUE) |
ylim |
range of the vertical axis |
main |
character with the title of the plot (default = ”) |
ylab |
label of the vertical axis |
xlab |
label of the horizontal axis |
lty |
type of line |
drawAxis |
should the axis be drawn (default = TRUE) |
rightshift |
a number specifying a (small) right shift of the line |
additionalTextGrouping |
character vector with additional text to the grouping |
superpose |
should the graph be superposed to an existing graph (default = FALSE) |
cex.grouping |
size of the labels of groups |
cex.ticks |
size of the thicks defining the the limits of the confidence intervals |
cex.lab |
size of the labels |
ylog |
should the vertical axis be expressed in a logarithmic scale (default = FALSE) |
... |
parameters to be passed to the function lines |
Value
none
Author(s)
Rodrigo Labouriau
Examples
MM <- glm(Y ~ Treatment+0, data = DeIdentifiedExample)
GG <- posthoc(MM)
lines(GG)