survival (version 2.9-6)

residuals.survreg: Compute Residuals for `survreg' Objects

Description

This is a method for the function residuals for objects inheriting from class survreg.

Usage

residuals.survreg(object, type, rsigma=T, collapse=F, weighted=F,...)

Arguments

object
an object inheriting from class survreg.
type
type of residuals, with choices of "response", "deviance", "dfbeta", "dfbetas", "working", "ldcase", "lsresp", "ldshape", and "matrix". S
rsigma
include the scale parameters in the variance matrix, when doing computations. (I can think of no good reason not to).
collapse
optional vector of subject groups. If given, this must be of the same length as the residuals, and causes the result to be per group residuals.
weighted
give weighted residuals? Normally residuals are unweighted.
...
other unused arguments

Value

  • A vector or matrix of residuals is returned. Response residuals are on the scale of the original data, working residuals are on the scale of the linear predictor, and deviance residuals are on log-likelihood scale. The dfbeta residuals are a matrix, where the ith row gives the approximate change in the coefficients due to the addition of subject i. The dfbetas matrix contains the dfbeta residuals, with each column scaled by the standard deviation of that coefficient.

    The matrix type produces a matrix based on derivatives of the log-likelihood function. Let $L$ be the log-likelihood, $p$ be the linear predictor $X\beta$, and $s$ be $\log(\sigma)$. Then the 6 columns of the matrix are $L$, $dL/dp$,$\partial^2L/\partial p^2$, $dL/ds$, $\partial^2L/\partial s^2$ and $\partial^2L/\partial p\partial s$. Diagnostics based on these quantities are discussed in an article by Escobar and Meeker. The main ones are the likelihood displacement residuals for perturbation of a case weight (ldcase), the response value (ldresp), and the shape.

References

Escobar, L. A. and Meeker, W. Q. (1992). Assessing influence in regression analysis with censored data. Biometrics 48, 507-528.

See Also

predict.survreg

Examples

Run this code
data(aml)
fit <- survreg(Surv(time,status) ~x, aml)
rr  <- residuals(fit, type='matrix')

Run the code above in your browser using DataCamp Workspace