Displaying 1 result from an estimated 1 matches for "nulltype".
2011 Apr 05
0
Changing parameter in local fdr R code
I am using Efron's local fdr procedure. But, I want to change the null from
N(0,1) to N(0, 0.002). I can access the function but I have no idea what to
change. In other words, I want nulltype to be N(0,0.002) instead of N(0,1)
in his function. Anyone has any ideas. This is his code for the local fdr:
function (zz, bre = 120, df = 7, pct = 0, pct0 = 1/4, nulltype = 1,
type = 0, plot = 1, mult, mlests, main = " ", sw = 0)
{
call = match.call()
if (length(bre) > 1...