This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How to make it significant

What test can make it significant? Can't remove a sample.

    control1    control2    control3    treat1  treat2  treat3
        0           0          0           0       5      6
test differential analysis

1 answer

meaninglessTest <- function(x) {
    return(sum(x[4:6]) - sum(x[1:3]) > 0)
}

That is a meaningless test that will return true that there's a difference. No proper statistical test will be significant for that comparison with only 3 samples. Your goal is also not to show there's a difference, but rather to see if there is one.

Log in to answer this question.