On 7/25/07, Kevin Wright <[EMAIL PROTECTED]> wrote:
> When I create a dotplot in lattice, I frequently observe overplotting
> of the labels along the vertical axis. On my screen, this illustrates
> overplotting of the letters:
>
> windows()
> reps=6
> dat=data.frame(let=rep(letters,each=reps), grp
When I create a dotplot in lattice, I frequently observe overplotting
of the labels along the vertical axis. On my screen, this illustrates
overplotting of the letters:
windows()
reps=6
dat=data.frame(let=rep(letters,each=reps), grp=rep(1:reps, 26),
y=runif(26*reps))
dotplot(let~y|grp, dat)
Is