View source: R/panelfunctions.R
adeg.panel.hist | R Documentation |
Panel function for displaying histograms into a trellis
graphic (lattice
package) and level lines.
adeg.panel.hist(histValues, horizontal = TRUE, densi, drawLines, params = list(),
identifier = "histogramADEg")
histValues |
an object of class histogram. See |
horizontal |
a logical indicating if the plot is horizontal |
densi |
a list returns by the |
drawLines |
a vector containing the level values |
params |
graphical parameters : |
identifier |
A character string that is prepended to the name of the grob that is created. |
Displays the histogram and level lines.
For more information about the use of panel functions, please see the lattice
package developed by Deepayan Sarkar.
Alice Julien-Laferriere, Aurelie Siberchicot aurelie.siberchicot@univ-lyon1.fr and Stephane Dray
bkde
and hist
if(require(KernSmooth, quietly = TRUE) & require(lattice, quietly = TRUE)) {
z <- round(rnorm(100, 30, 5))
h <- hist(z, plot = FALSE)
d <- bkde(z, kernel = "normal", gridsize = 60)
l <- c(10, 20, 30, 40)
xyplot(1:50 ~ 1:50, histValues = h, densi = d, drawLines = l,
panel = function(drawLines, histValues, densi){
adeg.panel.hist(histValues = histValues, drawLines = drawLines, densi = densi)})
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.