Rolf Turner
2020-Feb-13 04:58 UTC
[R] Increasing space for main title in a lattice (xyplot()) graphics.
I'm trying to do an xyplot() with a longish main title that I'd like to split into two lines, something like xyplot(<whatever>, main="The quick brown fox jumped\n over the lazy dog.") When I do this I only get the last half, i.e. the "over the lazy dog." bit, and the first half doesn't appear. In base graphics I'd handle this sort of thing by increasing the third entry of the "mar" parameter. How can increase the space allocated for the title in lattice graphics? I've done a substantial amount of Googling and can't find anything helpful. I've fiddled about with trellis.par.set() and cannot seem to get any effect. Could someone please give my poor feeble brain some guidance? Ta. cheers, Rolf Turner -- Honorary Research Fellow Department of Statistics University of Auckland Phone: +64-9-373-7599 ext. 88276
Richard M. Heiberger
2020-Feb-13 05:07 UTC
[R] Increasing space for main title in a lattice (xyplot()) graphics.
It works as anticipated for me> xyplot(1 ~ 1,+ main="The quick brown fox jumped\n over the lazy dog.")> xyplot(1 ~ 1,+ main="The quick brown fox jumped over the lazy dog.") Something else you are doing is probably causing the difficulty. Rich On Wed, Feb 12, 2020 at 11:59 PM Rolf Turner <r.turner at auckland.ac.nz> wrote:> > > I'm trying to do an xyplot() with a longish main title that I'd like to > split into two lines, something like > > xyplot(<whatever>, > main="The quick brown fox jumped\n over the lazy dog.") > > When I do this I only get the last half, i.e. the "over the lazy dog." > bit, and the first half doesn't appear. > > In base graphics I'd handle this sort of thing by increasing the third > entry of the "mar" parameter. > > How can increase the space allocated for the title in lattice graphics? > I've done a substantial amount of Googling and can't find anything > helpful. I've fiddled about with trellis.par.set() and cannot seem to > get any effect. > > Could someone please give my poor feeble brain some guidance? Ta. > > cheers, > > Rolf Turner > > -- > Honorary Research Fellow > Department of Statistics > University of Auckland > Phone: +64-9-373-7599 ext. 88276 > > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > 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.
Deepayan Sarkar
2020-Feb-13 05:16 UTC
[R] Increasing space for main title in a lattice (xyplot()) graphics.
On Thu, Feb 13, 2020 at 10:39 AM Richard M. Heiberger <rmh at temple.edu> wrote:> > It works as anticipated for me > > > xyplot(1 ~ 1, > + main="The quick brown fox jumped\n over the lazy dog.") > > xyplot(1 ~ 1, > + main="The quick brown fox jumped over the lazy dog.") > > Something else you are doing is probably causing the difficulty.Yes, the necessary space should be automatically allocated. Details of version / device might help diagnosing the problem. -Deepayan> > Rich > > On Wed, Feb 12, 2020 at 11:59 PM Rolf Turner <r.turner at auckland.ac.nz> wrote: > > > > > > I'm trying to do an xyplot() with a longish main title that I'd like to > > split into two lines, something like > > > > xyplot(<whatever>, > > main="The quick brown fox jumped\n over the lazy dog.") > > > > When I do this I only get the last half, i.e. the "over the lazy dog." > > bit, and the first half doesn't appear. > > > > In base graphics I'd handle this sort of thing by increasing the third > > entry of the "mar" parameter. > > > > How can increase the space allocated for the title in lattice graphics? > > I've done a substantial amount of Googling and can't find anything > > helpful. I've fiddled about with trellis.par.set() and cannot seem to > > get any effect. > > > > Could someone please give my poor feeble brain some guidance? Ta. > > > > cheers, > > > > Rolf Turner > > > > -- > > Honorary Research Fellow > > Department of Statistics > > University of Auckland > > Phone: +64-9-373-7599 ext. 88276 > > > > ______________________________________________ > > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > > 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. > > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > 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.