Displaying 1 result from an estimated 1 matches for "panelinplot2".
2013 Mar 20
0
How to avoid using gridextra via Depends instead of Imports in a package ?
...ue_col, zoom_x=NULL, zoom_y=NULL,
fdrLimit=0,overview_plot=FALSE,...)
{
frm <- as.formula(paste(qvalue_col,"~ rank(",pvalue_col,")"))
plt <- xyplot( frm ,
data=dt,
abline=list(h=fdrLimit,lty="dashed"),
pch=16,cex=1,
type="p",
panel=panelinplot2,
subscripts= TRUE,
)
return(plt)
}
panelinplot2 <- function(x,y,subscripts,cex,type,...){
panel.xyplot(x,y,subscripts=subscripts,
ylim=c(0,1),
type=type,
cex=cex,...)
pltoverview <- xyplot(y~x,xlab=NULL,
ylab=NULL,
type="l&...