pt_line | R Documentation |
Base plotting helper function.
pt_line(
x,
y,
ln.lty,
ln.col,
ln.lwd,
pch,
bg,
cex = 1,
pt.lwd = 0.25,
pt.lty = 1,
pt.col = "black"
)
x |
x-value |
y |
y-value |
ln.lty |
line type |
ln.col |
line color |
ln.lwd |
line width |
pch |
plotting ‘character’, i.e., symbol to use. see points() |
bg |
background (fill) color for the open plot symbols given by pch = 21:25. see points() |
cex |
point size |
pt.lwd |
line width of points |
pt.lty |
line type for points |
pt.col |
color of point |
draws points and lines together.
see points() and lines() functions
x.val=c(1,2,3)
mean.val=c(2,5,7)
se.val=c(0.1,0.5,1)
plot(mean.val~x.val,ylim=c(0,10),type="n")
pt_line(x.val,mean.val,2,"grey",1,21,"dodgerblue1")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.