Description Usage Arguments Value Author(s) See Also Examples
These generic functions access and set the null model for
deSet
object.
1 2 3 4 5 6 7 8 9 |
object |
|
value |
|
nullModel
returns the formula for the null model.
John Storey, Andrew Bass
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # import data
library(splines)
data(kidney)
age <- kidney$age
sex <- kidney$sex
kidexpr <- kidney$kidexpr
cov <- data.frame(sex = sex, age = age)
# create models
null_model <- ~sex
full_model <- ~sex + ns(age, df = 4)
# create deSet object from data
de_obj <- build_models(data = kidexpr, cov = cov, null.model = null_model,
full.model = full_model)
# extract the null model equation
mod_null <- nullModel(de_obj)
# change null model in experiment but must update full model
nullModel(de_obj) <- ~1
fullModel(de_obj) <- ~1 + ns(age, df=4)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.