Entering edit mode
3.2 years ago
RNAseqer
▴
280
I need to get the beta coefficients from my edgeR output. Does anyone know how to extract these.
I need to get the beta coefficients from my edgeR output. Does anyone know how to extract these.
The help page ?glmFit
explains the meaning of all the components in the output object, in particular the coefficients
matrix. So
fit <- glmFit(y, design)
head(fit$coefficients)
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.