Description Usage Arguments Value Author(s) See Also Examples
Access the fitted full model residuals in an deFit
object.
1 2 3 4 |
object |
|
resFull
returns a matrix of residuals from full 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 | # 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)
# run fit_models to get model fits
de_fit <- fit_models(de_obj)
# extract out the full residuals from the model fit
res_full <- resFull(de_fit)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.