Rev 68948 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/grid/man/Grid.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2007 R Core Team% Distributed under GPL 2 or later\name{Grid}\alias{Grid}\title{Grid Graphics}\description{General information about the grid graphics package.}\details{Grid graphics provides an alternative to the standard R graphics.The user is able to define arbitrary rectangular regions (called\emph{viewports}) on the graphics device and define a number ofcoordinate systems for each region. Drawing can be specified to occurin any viewport using any of the available coordinate systems.Grid graphics and standard R graphics do not mix!Type \code{library(help = grid)} to see a list of (public)Grid graphics functions.}\author{Paul Murrell}\seealso{\code{\link{viewport}},\code{\link{grid.layout}}, and\code{\link{unit}}.}\examples{## Diagram of a simple layoutgrid.show.layout(grid.layout(4,2,heights=unit(rep(1, 4),c("lines", "lines", "lines", "null")),widths=unit(c(1, 1), "inches")))## Diagram of a sample viewportgrid.show.viewport(viewport(x=0.6, y=0.6,w=unit(1, "inches"), h=unit(1, "inches")))## A flash plotting examplegrid.multipanel(vp=viewport(0.5, 0.5, 0.8, 0.8))}\keyword{dplot}