Learn R Programming

edge (version 2.4.2)

sType: Statistic type used in analysis

Description

Access the statistic type in a deFit object. Can either be the optimal discovery procedure (odp) or the likelihood ratio test (lrt).

Usage

sType(object)

## S3 method for class 'deFit': sType(object)

Arguments

object
S4 object: deFit

Value

  • sType returns the statistic type- either "odp" or "lrt".

See Also

fit_models, deFit and deSet

Examples

Run this code
# 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 the statistic type of model fits
stat_type <- sType(de_fit)

Run the code above in your browser using DataLab