Displaying 1 result from an estimated 1 matches for "filt_zone_df".
2012 Jan 08
1
how to combine grouped data and ungrouped data in a trellis xyplot
...rver[1]," CPU Caps\n",df$date[1]," to
",df$date[nrow(df)],sep="")
)
print(xyp)
and I can plot two ungrouped lines using a panel=function with subscripts
like this (maybe not the best way, but I found an example doing it this
way):
xyplot(cpu~dt|zone,data=filt_zone_df,ylim=c(0,100),
main=paste(server," - Zone CPU (Blue) & Memory (Red)
Util\n",filt_zone_df$ts[1],"-",filt_zone_df$ts[nrow(filt_zone_df)],sep=""),
panel=function(x,y,subscripts){
panel.lines(x,y)
panel.lines(filt_zon...