Displaying 1 result from an estimated 1 matches for "thomasmiller".
Did you mean:
thomasamiller
2008 Sep 03
0
Graphics: Improving a Lattice plot - can it be done ?
...t;, as illustrated in the code below:
funnelGraph <- function(x, ylim, bands, ...)
{
#----------------------------------------------------------------------
# Function to plot a funnel graph
# Requires package: RColorBrewer
#
# Created by Nigel De Silva, 3 June 2006
# nigel.desilva@thomasmiller.com <mailto:nigel.desilva@thomasmiller.com>
#----------------------------------------------------------------------
require(RColorBrewer)
# Determine confidence levels for graph
if(missing(bands)) bands <- 40
ci <- seq(from=0.50, to=0.995, length=bands)
q <- c(0.5-ci/2,...