panel.ci: Lattice panel function for confidence intervals

Description Usage Arguments Author(s) Examples

View source: R/DAMisc_functions.R

Description

This panel function is defined to plot confidence intervals in a multi-panel lattice display. Note, both lower and upper must be passed directly to xyplot as they will be passed down to the prepanel function.

Usage

1
	panel.ci(x,y,subscripts, lower,upper,zl)

Arguments

x,y

Data from the call to xyplot.

subscripts

Variable used to created the juxtaposed panels.

lower, upper

95% lower and upper bounds of y.

zl

Logical indicating whether or not a horizontal dotted line at zero is desired.

Author(s)

Dave Armstrong (UW-Milwaukee, Department of Political Science)

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
library(car)
library(lattice)
data(Ornstein)
mod <- lm(interlocks ~ log(assets)*nation, data=Ornstein)
mod.out <- intQualQuant(mod, c("log(assets)", "nation"), 
	n=25)
xyplot(fit ~ x | contrast, data=mod.out, 
	xlab = "Assets", ylab = "Difference In Fitted Values", 
	lower=mod.out$lower, upper=mod.out$upper, zl=TRUE, 
	prepanel=prepanel.ci, panel=panel.ci)

DAMisc documentation built on May 2, 2019, 4:52 p.m.