You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 13, 2021. It is now read-only.
I am having difficulty retrieving pvals when method='amoc'.
Looking at this chunk (lines 92-97 in EDM.R):
over = 1
for(i in 1:nperm){
Zcounts = sample(Zcounts)
stat = Analysis(Zcounts, min.size, alpha)
if(stat$stat >= retList$stat)
over = over + 1
I don't believe retList has been initialized. So stat$stat >= retList$stat is always false. Indeed,
running breakout with nperm=N results in a p-value of 1/(N+1).
Forgive me if I'm pointing out something incorrect or already known. I couldn't find any mention of it here.
The text was updated successfully, but these errors were encountered:
Hello,
I am having difficulty retrieving pvals when method='amoc'.
Looking at this chunk (lines 92-97 in EDM.R):
I don't believe retList has been initialized. So
stat$stat >= retList$stat
is always false. Indeed,running breakout with
nperm=N
results in a p-value of 1/(N+1).Forgive me if I'm pointing out something incorrect or already known. I couldn't find any mention of it here.
The text was updated successfully, but these errors were encountered: