layout.boxes | R Documentation |
A simple utility to generate a row or column of boxes (rectangles) for use in point-and-click panels.
layout.boxes(B, n, horizontal = FALSE, aspect = 0.5, usefrac = 0.9)
B |
Bounding rectangle for the boxes.
An object of class |
n |
Integer. The number of boxes. |
horizontal |
Logical. If |
aspect |
A single finite positive number, giving the
aspect ratio (height divided by width) of each box,
or |
usefrac |
Number between 0 and 1. The
fraction of height or width of |
This simple utility generates a list of boxes (rectangles)
inside the bounding box B
arranged in a regular
row or column. It is useful for generating the
positions of the panel buttons in the function
simplepanel
.
The argument aspect
specifies the ratio of height to width
(height divided by width).
If aspect
is a finite numerical value, then the boxes will
have the given aspect ratio.
If aspect
is Inf
or
NA
, aspect ratio is unconstrained; the boxes will have the
maximum possible width and height.
A list of rectangles (objects of class "owin"
which are rectangles).
and \rolf
simplepanel
B <- owin(c(0,10),c(0,1))
boxes <- layout.boxes(B, 5, horizontal=TRUE)
plot(B, main="", col="blue")
niets <- lapply(boxes, plot, add=TRUE, col="grey")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.