summary.tsriadditive: Summarizing Additive Hazards Model with Two Stage Residual...

Description Usage Arguments Value Examples

View source: R/tsriadditive.R

Description

summary method for class "tsriadditive".

Usage

1
2
3
4
5
## S3 method for class 'tsriadditive'
summary(object, ...)

## S3 method for class 'summary.tsriadditive'
print(x, ...)

Arguments

object

an object of class "tsriadditive", usually, a result of a call to tsriadditive.

...

further arguments passed to or from other methods.

x

an object of class "summary.tsriadditive", usually, a result of a call to summary.tsriadditive.

Value

print.summary.lm tries to be smart about formatting coefficients, an estimated variance covariance matrix of the coeffieients, Z-values and the corresponding P-values

Examples

1
2
3
4
5
6
7
survtime <- rexp(100)
cause <- rbinom(100, 1, 0.7)
treatment <- rbinom(100, 1, 0.5)
IV <- rnorm(100)
covariates <- rnorm(100)
fit <- tsriadditive(survtime, cause, treatment, IV, covariates)
summary(fit)

tsriadditive documentation built on April 28, 2020, 5:10 p.m.