coef.qualint: Extract estimation results from a "qualint" object

Description Usage Arguments Details Value Author(s) References See Also Examples

Description

Similar to other coef methods, this function extracts the estimation results from an "qualint" object.

Usage

1
2
## S3 method for class 'qualint'
coef(object, ...)

Arguments

object

a qualint object

...

not used. Additional print arguments

Details

This function extracts the results related with estimating results of the interaction test from a "qualint" object. It returns a matrix which contains the estimating results of the treatment effects which will used directly in the testing process later. FOr continuous responses, it is the mean difference. For binary responses, it is the risk difference, log relative risk or log odds ratio. For survival responses, it it the log hazard ratio.

Value

A numeric matrix (see above). For type = "continuous", it is the estimation results for mean difference. For type = "binary", it is for risk difference, log relative risk or log odds ration. For type = "survival", it is for log hazard ratio.

Author(s)

Lixi Yu, Eun-Young Suh, Guohua (James) Pan
Maintainer: Lixi Yu lixi-yu@uiowa.edu

References

Gail and Simon (1985), Testing for qualitative interactions between treatment effects and patient subsets, Biometrics, 41, 361-372.

Pan and Wolfe (1993), Tests for generalized problems of detecting qualitative interaction, Technical Report No. 526, Department of Statistics, The Ohio State University.

Pan and Wolfe (1997), Test for qualitative interaction of clinical significance, Statistics in Medicine, 16, 1645-1652.

See Also

print.qualint, plot.qualint

Examples

1
2
3
4
5
6
7
ynorm <- rnorm(300)
trtment <- sample(c(0, 1), 300, prob = c(0.4, 0.6),
                  replace = TRUE)
subgrp <- sample(c(0, 1, 2), 300, prob = c(1/3, 1/3, 1/3),
                 replace = TRUE)
test1 <- qualint(ynorm, trtment, subgrp)
coef(test1)

QualInt documentation built on May 1, 2019, 11 p.m.