-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathretinopathy.Rd
More file actions
55 lines (53 loc) · 2.13 KB
/
Copy pathretinopathy.Rd
File metadata and controls
55 lines (53 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
\name{retinopathy}
\alias{retinopathy}
\docType{data}
\title{Diabetic Retinopathy}
\description{A trial of laser coagulation as a treatment to delay
diabetic retinopathy.
}
\usage{retinopathy
data(retinopathy, package="survival")
}
\format{
A data frame with 394 observations on the following 9 variables.
\describe{
\item{\code{id}}{numeric subject id}
\item{\code{laser}}{type of laser used: \code{xenon} \code{argon}}
\item{\code{eye}}{which eye was treated: \code{right} \code{left}}
\item{\code{age}}{age at diagnosis of diabetes}
\item{\code{type}}{type of diabetes: \code{juvenile} \code{adult},
(diagnosis before age 20)}
\item{\code{trt}}{0 = control eye, 1 = treated eye}
\item{\code{futime}}{time to loss of vision or last follow-up}
\item{\code{status}}{0 = censored, 1 = loss of vision in this eye}
\item{\code{risk}}{a risk score for the eye. This high risk
subset is defined as a score of 6 or greater in at least one eye.}
}
}
\details{
The 197 patients in this dataset were a 50\% random sample of the
patients with "high-risk" diabetic retinopathy as defined by the
Diabetic Retinopathy Study (DRS). Each patient had one eye randomized
to laser treatment and the other eye received no treatment,
and has two observations in the data set.
For each
eye, the event of interest was the time from initiation of treatment
to the time when visual acuity dropped below 5/200 two visits in a row.
Thus there is a built-in lag time of
approximately 6 months (visits were every 3 months). Survival times
in this dataset are the actual time to vision loss in months,
minus the minimum possible time to event (6.5 months). Censoring was
caused by death, dropout, or end of the study.
}
\references{
W. J. Huster, R. Brookmeyer and S. G. Self (1989).
Modelling paired survival data with covariates,
Biometrics 45:145-156.
A. L. Blair, D. R. Hadden, J. A. Weaver, D. B. Archer, P. B. Johnston
and C. J. Maguire (1976). The 5-year prognosis for vision in diabetes,
American Journal of Ophthalmology, 81:383-396.
}
\examples{
coxph(Surv(futime, status) ~ type + trt, cluster= id, retinopathy)
}
\keyword{datasets}