Displaying 1 result from an estimated 1 matches for "pvalue_col".
Did you mean:
  qvalue_col
  
2013 Mar 20
0
How to avoid using gridextra via Depends instead of Imports in a package ?
...Imports:
    grid,
    gridExtra,
    lattice,
    latticeExtra,
    reshape,
Depends:
    R (>= 2.15),
    methods
Suggests:
    testthat,
    devtools
License: GPL (>= 3)
Collate:
    'zzz.R'
    'plotFDR.R'
R/plotFDR.R
----------------
plot_fdr <- function(dt,qvalue_col,pvalue_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=paneli...