boxed.labels {plotrix}R Documentation

Place labels in boxes

Description

Places labels in boxes on an existing plot

Usage

boxed.labels(x,y,labels,col="white",border=TRUE,xpad=0.6,ypad=0.6,...)

Arguments

x,y x and y position of the centers of the labels
col The color of the rectangles on which the labels are displayed.
labels Text strings
border Whether to draw borders around the rectangles.
xpad,ypad Half the value of the proportion of the rectangles to the extent of the text within.
... additional arguments passed to text.

Details

This function is best for regularly spaced labels where overlapping is not a problem. See thigmophobe.labels for squeezing labels in tight places.

Value

nil

Author(s)

Jim Lemon

See Also

spread.labels, thigmophobe.labels

Examples

 x<-rnorm(10)
 y<-rnorm(10)
 plot(x,y,type="p")
 nums<-c("one","two","three","four","five","six","seven","eight","nine","ten")
 boxed.labels(x,y-0.1,nums)

[Package plotrix version 1.2-1 Index]