zoukankan      html  css  js  c++  java
  • qvalue: Check that you have valid p-values or use a different range of lambda

    ERROR: The estimated pi0 <= 0. Check that you have valid p-values or use a different range of lambda.

    重现错误的代码:

    ps <- runif(3e5)
    library(qvalue)
    ps <- ps[ps < 0.75]
    qs <- qvalue(ps)

    Error in pi0est(p, ...) :
      ERROR: The estimated pi0 <= 0. Check that you have valid p-values or use a different range of lambda.
     

     seq(0.05, 0.75, 0.05)
     [1] 0.05 0.10 0.15 0.20 0.25 0.30 0.35 0.40 0.45 0.50 0.55 0.60 0.65 0.70 0.75
    qs <- qvalue(ps, lambda = seq(0.05, 0.75, 0.05))

    ==================================

    ERROR: length(lambda)=2. If length of lambda greater than 1, you need at least 4 values.Error in pi0est(p, ...)

         if(length(lambda)>1 && length(lambda)<4) {
        if(gui)
        eval(expression(postMsg(paste("ERROR: If length of lambda greater than 1, you need at least 4 values.",
        " "))), parent.frame())
        else
        print("ERROR: If length of lambda greater than 1, you need at least 4 values.")
        return(0)
        }
        
    =================================

    > seq(0.01, max(fisher_pvalues)-0.01, 0.05)
    Error in seq.default(0.01, max(fisher_pvalues) - 0.01, 0.05) :
      wrong sign in 'by' argument
    > max(fisher_pvalues)
    [1] 1.284044e-09

    =================================

    > seq(min(fisher_pvalues), max(fisher_pvalues)-0.01, 0.05)
    Error in seq.default(min(fisher_pvalues), max(fisher_pvalues) - 0.01,  :
      wrong sign in 'by' argument
    > min(fisher_pvalues)
    [1] 1.284044e-09
    >  max(fisher_pvalues)
    [1] 1.284044e-09
    =================================

    From:

    https://support.bioconductor.org/p/74637/

  • 相关阅读:
    Emacs使用gnus收发邮件时nnfolder相关介绍
    emacs 播放mp3
    你真的会写二分查找吗?
    数独的经典case
    MySQL处理千万级数据查询、分页
    Mysql Replication 机制
    redis位图(bitmap)常用命令的解析
    由浅入深了解线程池之源码初探
    BlockingQueue家族成员一览
    由浅入深了解线程池之初识线程池
  • 原文地址:https://www.cnblogs.com/emanlee/p/7376250.html
Copyright © 2011-2022 走看看