I am using Bioconductor limma
package. I want to define degree of freedom in eBayes
function for microarray analysis. How can I change default degrees of freedom in it? Pleasee see the code below:
fit2 <- eBayes(fit2, 0.01)
I am using Bioconductor limma
package. I want to define degree of freedom in eBayes
function for microarray analysis. How can I change default degrees of freedom in it? Pleasee see the code below:
fit2 <- eBayes(fit2, 0.01)
However the reason to change degrees of freedom after modeling is unclear, as degrees of freedom characterize the amount of variables and observations in your input data. You can change the degrees of freedom of the
MArrayLM
object, which is an argument ofeBayes
function. Please see the code below: