Displaying 1 result from an estimated 1 matches for "minplot".
Did you mean:
winplot
2003 Jun 04
4
Strip location and grid colour in Lattice
...ough time to follow up.
This is in striking contrast to a previous attempt (most of the code however
is at home not here), but the functions that I worked out for the at and
label functions were
ProcLab <- function(DateData,breakNum){
maxplot <- round(as.numeric(max(DateData)),digits=0)
minplot <- round(as.numeric(min(DateData)),digits=0)
maxplotnum<- round(((maxplot-minplot)/86400)+1,digits=0)
jumpnum <- (maxplotnum/((breakNum)-1))*.98
lablist <- seq(min(DateData),max(DateData),jumpnum*86400)
}
ProcAt <- function(DateData,breakNum){
maxplot <- round(as.numeric(m...