Displaying 1 result from an estimated 1 matches for "seaslog".
Did you mean:
meanlog
2006 May 12
1
superpose two variables in lattice/xyplot
Dear R users,
I try to use xyplot() to display two different response variables from
the same dataframe per panel, but don't succeed:
xyplot(ptot.seaslog ~ vmcwit | seas, data=reeks, as.table=TRUE,
panel = function(x,y){
panel.xyplot(x, y, ylim=c(0,1))
panel.superpose(x=reeks$vmcwit, y=reeks$ptotbin,
panel.groups = "panel.xyplot", groups=reeks$seas,
subscripts = TRUE, col="red"...