Hi,
I am new to R community and I have a question on panel configurations in
the Trellis package.
Particularly, I have the following code:
require(lattice)
plotTable <- NULL
Date <- seq(as.Date("2006-11-01"), as.Date("2009-12-01"), by = 1)
nYear <- length(unique(format(Date,"%Y")))
plotTable$Date <- as.Date(paste(unique(format(Date, "%Y-%m")), "-01",sep
= ""))
nDate <- length(plotTable$Date)
plotTable$Date <- rep(plotTable$Date, each = 10)
plotTable$Date <- factor(format(plotTable$Date, "%b-%y"),
levels=format(as.Date(unique(sort(as.character(plotTable$Date)))),
"%b-%y"))
plotTable$x <- rep(seq(1,10,by = 1), nDate)
plotTable$y <- rep(seq(1,10,by = 1), nDate)
xyplot(y ~ x| Date, data = plotTable,
panel=function(x,y){ panel.xyplot(x,y, type = "l", lwd = 3) },
layout = c(12,nYear),
main = "Example of the panels by months")
I would be interested to configure panels by years horizontally, so
2006, 2007, 2008, and 2009 all have different rows, and the months will
be structured by columns,
Thank you,
-------------------------------
Anatoley Zheleznyak
Risk Management Group
Constellation Commodities Group
tel: 410-230-5663
-------------------------------
>>> This e-mail and any attachments are confidential, may contain legal,
professional or other privileged information, and are intended solely for the
addressee. If you are not the intended recipient, do not use the information
in this e-mail in any way, delete this e-mail and notify the sender. CEG-IP2
[[alternative HTML version deleted]]
______________________________________________
[email protected] 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.