Re: [R] xyplot and lwd

2013-09-08 Thread Daniel Hornung
On Thursday, September 05, 2013 16:39:14 Bert Gunter wrote: > Daniel: > > I wondered if that might be what you meant ... > > To amplify a bit on David's response, the answer is that you do **not** > have separate control over the line width of characters -- lwd controls the > width of lines in a

Re: [R] xyplot and lwd

2013-09-05 Thread Bert Gunter
Daniel: I wondered if that might be what you meant ... To amplify a bit on David's response, the answer is that you do **not** have separate control over the line width of characters -- lwd controls the width of lines in a graph (exactly as it does in base graphics! ), so you misunderstood the lw

Re: [R] xyplot and lwd

2013-09-05 Thread Daniel Hornung
On Thursday, September 05, 2013 13:40:00 David Winsemius wrote: > >>> can it be that xyplot does not support the lwd argument? > > The lattice plotting system uses the grid plotting engine and does > accepts some base par-type arguments but not all. You may need to > read more about lattice and g

Re: [R] xyplot and lwd

2013-09-05 Thread David Winsemius
On Sep 5, 2013, at 2:54 AM, Daniel Hornung wrote: On Wed, Sep 4, 2013 at 1:45 PM, Daniel Hornung wrote: Hello, can it be that xyplot does not support the lwd argument? The lattice plotting system uses the grid plotting engine and does accepts some base par-type arguments but not all. Yo

Re: [R] xyplot and lwd

2013-09-04 Thread Daniel Hornung
> On Wed, Sep 4, 2013 at 1:45 PM, Daniel Hornung wrote: > > Hello, > > > > can it be that xyplot does not support the lwd argument? > > > > At least here, the following still shows thin lines, as opposed to the > > regular > > plot command: > > > > xyplot(Sepal.Length ~ Sepal.Width, data = iris

Re: [R] xyplot and lwd

2013-09-04 Thread Bert Gunter
You should get no lines at all, as you have not specified that lines be drawn. Use the "type" argument to do so. xyplot(rnorm(5) ~1:5,pch=4) ## points only xyplot(rnorm(5) ~1:5,pch=4,type="b",lwd=4) ## points with thick lines read ?panel.xyplot carefully (the default panel function for xyplot) f

[R] xyplot and lwd

2013-09-04 Thread Daniel Hornung
Hello, can it be that xyplot does not support the lwd argument? At least here, the following still shows thin lines, as opposed to the regular plot command: xyplot(Sepal.Length ~ Sepal.Width, data = iris, pch=4, lwd=4) Cheers, Daniel -- Max-Planck-Institute for Dynamics and Self-Organization