2025-01-12 04:36:52 +08:00

31 lines
985 B
R

### R code from vignette source 'moveline.Rnw'
###################################################
### code chunk number 1: moveline.Rnw:24-28
###################################################
library(grDevices)
library(grid)
ps.options(pointsize = 12)
options(width = 60)
###################################################
### code chunk number 2: fig
###################################################
pushViewport(
viewport(w = 0.8, h = 0.8,
layout = grid.layout(1, 3,
widths = unit(rep(1, 3),
c("null", "inches", "null")))))
pushViewport(viewport(layout.pos.col = 1, yscale = c(0, 4)))
grid.grill(); grid.yaxis(); grid.xaxis()
grid.points(0.5, unit(2, "native"))
grid.move.to(0.5, unit(2,"native"))
popViewport()
pushViewport(viewport(layout.pos.col = 3, yscale = c(0, 2)))
grid.grill(); grid.yaxis(); grid.xaxis()
grid.points(0.5, unit(2, "native"))
grid.line.to(0.5, unit(2,"native"))