powered by
Creae a simple plot showing a line segment.
lsegments( x = c(3, 7), l = "o", r = "c", ticks = TRUE, labs = 1, add = 0, ylim = c(-0.75, 0.25) )
The endpoints of the interval. Values larger (smaller) than 999 (-999) will be interpreted as (negative) infinity.
Indicate whether the left end point should be open ("o") or closed ("c").
"o"
"c"
Indicate whether the right end point should be open ("o") or closed ("c").
Indicate whether to show tick marks (TRUE) or not (FALSE).
TRUE
FALSE
The position for the point labels. Set to 0 if no labels should be shown.
0
Indicate whether the line segment should be added to an existing plot (TRUE) or a new plot should be created (FALSE).
A vector of length 2 specifying the vertical plotting limits, which may be useful for fine-tuning plots. The default is c(-0.75,0.25).
c(-0.75,0.25)
David Diez
dlsegments, CCP, ArrowLines
dlsegments
CCP
ArrowLines
lsegments(c(2, 7), "o", "c", ylim = c(-0.3, 0.2)) lsegments(c(5, 7), "c", "c", ylim = c(-0.3, 0.2)) lsegments(c(4, 1000), "o", "o", ylim = c(-0.3, 0.2))
Run the code above in your browser using DataLab