1. In the manual, section 3.5, comparison both between and within subjects
If I have the similar design, but my question is only to find genes responding to the hormone, may I skip the patient item in design matrix:
Like instead of using:
design <- model.matrix(~Disease+Disease:Patient+Disease:Treatment)
only use:
design <- model.matrix(~Disease+Disease:Treatment)
And a relevant question:
2. if I have a design matrix:
design <- model.matrix(~0+Disease+Patient+Treatment)
are the coefficients still equivalent to the expression level of each group? I feel some levels in Patient or Treatment are missing
Thanks a lot:)