Deltamatrix: Delta matrix

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

View source: R/npsurv.R

Description

Deltamatrix computes the Delta matrix, along with maximal intersection intervals, for a set of intervals.

Usage

1

Arguments

LR

two-column matrix, each row of which stores an censoring interval of the form (Li, Ri]. If Li = RiLi = Ri, it is an exact observation.

Details

An intersection interval is a nonempty intersection of any combination of the given intervals, and a maximal intersection interval is an intersection interval that contains no other intersection interval.

The Delta matrix is a matrix of indicators (TRUE or FALSE). The rows correspond to the given interval-censored observations, and the columns the maximal intersection intervals. A TRUE value of the (i,j)-th element means that the i-th observation covers the j-th maximal intersection interval, and a FALSE value means the opposite.

Value

A list with components:

left

left endpoints of the maximal intersection intervals.

right

right endpoints of the maximal intersection intervals.

Delta

logical matrix, for the Delta matrix.

Author(s)

Yong Wang <yongwang@auckland.ac.nz>

References

Wang, Y. (2008). Dimension-reduced nonparametric maximum likelihood computation for interval-censored data. Computational Statistics & Data Analysis, 52, 2388-2402.

See Also

icendata, idf.

Examples

1
2
(x = cbind(1:5,1:5*3-2))
Deltamatrix(x)

npsurv documentation built on Oct. 23, 2020, 5:43 p.m.

Related to Deltamatrix in npsurv...