Learn R Programming

berryFunctions (version 1.11.0)

colPointsHist: Histogram for colPoints

Description

Adds Histogram to plots created or enhanced with colPoints

Usage

colPointsHist(z, nbins = 40, colors = seqPal(nbins), bb = seqR(z, length.out = nbins + 1), at = pretty2(z), labels = at, bg = "white", x = 0:40, y = 0:30, x1, y1, x2, y2, mar = c(6, 7, 3, 2), mgp = c(1.8, 0.6, 0), sborder = NA, resetfocus = TRUE, breaks = 20, freq = TRUE, col = par("fg"), border = NA, main = "", ylab = "", xlab = "", las = 1, axes = TRUE, ...)

Arguments

z
Values of third dimension used in colPoints
nbins
Number of classes (thus, colors). DEFAULT: 40
colors
Colors that are used for the background. DEFAULT: seqPal(nbins)
bb
Borders of bins for the background. DEFAULT: seqR(z, length.out=nbins+1)
at
Positions of x-axis labels. DEFAULT: pretty2(z)
labels
X-axis labels themselves. DEFAULT: at
bg
Background behind background and axis labels. DEFAULT: "white"
x, y
Relative coordinates (0:100) of inset plot, see smallPlot. DEFAULT: 0-30, 0-40
x1, y1, x2, y2
Positions of topleft and bottomright corner. Replaced with x,y, kept here for backcompatibility.
mar
Margins for smallPlot in relative values (0:100). DEFAULT: c(6, 7, 3, 2)
mgp
MarGinPlacement: distance of xlab/ylab, numbers and line from plot margin, as in par, but with different defaults. DEFAULT: c(1.8, 0.6, 0)
sborder
Border around inset subplot. DEFAULT: par("fg")
resetfocus
Reset focus to original plot? Specifies where further low level plot commands are directed to. DEFAULT: TRUE
breaks
Breaks as in hist, but with a different default. DEFAULT: 20
freq
Plot count data in hist? (if FALSE, plot density instead). DEFAULT: TRUE
col
Color of histogram bars. DEFAULT: par("fg")
border
Border around each bar. DEFAULT: NA
main, ylab, xlab
Labels. DEFAULT: ""
las
LabelAxisStyle. DEFAULT: 1
axes
Draw axes?. DEFAULT: TRUE
...
Further arguments passed to hist. NOT POSSIBLE: x, add

Value

invisible list of par of smallPlot, adds histogram to current plot

See Also

colPoints (section examples) for real life example

Examples

Run this code

z <- rnorm(50)
plot(1:10)
colPointsHist(z=z)

Run the code above in your browser using DataLab