On Mon, Oct 11, 2010 at 12:55 PM, casperyc <caspe...@hotmail.co.uk> wrote:
>
> And now I just wonder why the ' bty='n' ' won't work?
>
> I did
>
> dotplot(BATCH~RESPONSE,data=d,subset=Type=='SHORT',bty='n')
>
> and tried other bty parameters, none is working

As David says, "par" settings don't work in lattice (see 'Note' in ?Lattice).

Lattice doesn't have a "bty" equivalent (I don't think they make sense
for multipanel plots). But you might consider this as a starting
point:

dotplot(BATCH~RESPONSE,data=d,subset=Type=='SHORT',
        par.settings = list(axis.line = list(col = "transparent")))

-Deepayan

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to