km.pmf"

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

Introduction

The km.pmf function is part of the conf package. The function calculates the probability mass function for the support values of Kaplan and Meier's product–limit estimator[^1]. The Kaplan-Meier product-limit estimator (KMPLE) is used to estimate the survivor function for a data set of positive values in the presence of right censoring. The km.pmf function generates the probability mass function for the support values of the KMPLE for a particular sample size n, probability of observing a failure h at the time of interest expressed as the cumulative probability perc associated with $X = \min(T, C)$, where $T$ is the failure time and $C$ is the censoring time under a random-censoring scheme.

[^1]: Kaplan, E. L., and Meier, P. (1958), “Nonparametric Estimation from Incomplete Observations,” Journal of the American Statistical Association, 53, 457–481.

Installation Instructions

The km.pmf function is accessible following installation of the conf package:

install.packages("conf")
library(conf)

Details

The KMPLE is a nonparametric estimate of the survival function from a data set of lifetimes that includes right-censored observations and is used in a variety of application areas. For simplicity, we will refer to the object of interest generically as the item and the event of interest as the failure.

Let $n$ denote the number of items on test. The KMPLE of the survival function $S(t)$ is given by $$ \hat{S}(t) = \prod\limits_{i:t_i \leq t}\left( 1 - \frac{d_i}{n_i}\right), $$ for $t \ge 0$, where $t_1, \, t_2, \, \ldots, \, t_k$ are the times when at least one failure is observed ($k$ is an integer between 1 and $n$, which is the number of distinct failure times in the data set), $d_1, \, d_2, \, \ldots, \, d_k$ are the number of failures observed at times $t_1, \, t_2, \, \ldots, \, t_k$, and $n_1, \, n_2, \, \ldots, \, n_k$ are the number of items at risk just prior to times $t_1, \, t_2, \, \ldots, \, t_k$. It is common practice to have the KMPLE "cut off" after the largest time recorded if it corresponds to a right-censored observation[^2]. The KMPLE drops to zero after the largest time recorded if it is a failure; the KMPLE is undefined (NA), however, after the largest time recorded if it is a right-censored observation.

The support values (calculated in km.support) are calculated from $\hat{S}(t)$ at any $t \ge 0$ for all possible outcomes of an experiment with $n$ items on test.

The function km.pmf calculates the probability for each support value and produces a plot of the probabilities. The probability of NA, the event that the last time recorded is a right-censored observation, is also calculated and plotted at the arbitrary position of s = 1.1.

[^2]: Kalbfleisch, J. D., and Prentice, R. L. (2002), The Statistical Analysis of Failure Time Data (2nd ed.), Hoboken, NJ: Wiley.

Required Arguments

n sample size

h probability of observing a failure; that is, P(X = T)

perc cumulative probability associated with X = \min(T, C)

Optional Arguments

plot option to plot the probability mass function (default is TRUE)

sep option to show the breakdown of the probability for each support value (see function km.outcomes for details on the breakdown) (default is TRUE)

xfrac option to label support values on the x-axis as exact fractions (default is TRUE)

cex.lollipop size of the dots atop the spikes

Examples

The following section provides various examples for the usage of km.pmf.

Example 1

Qin et al.[^3] derived the probability mass function of the KMPLE for one particular setting where there are $n = 3$ items on test, the failure times $T_1,T_2$ and $T_3$ and the censoring times $C_1,C_2$ and $C_3$ both follow an exponential(1) distribution. The fixed time of interest is $t_0 = -\ln(1/2)/2$, which is the median of $X = \min(T, C)$, where $T$ is the failure time and $C$ is the censoring time under a random-censoring scheme. Therefore, perc = 0.5.

In this case, since failure and censoring times have the same exponential distribution, they are equally likely to occur; that is, h = 1/2.

For this example, km.pmf is called with the arguments n = 3, h = 0.5, and perc = 0.5. The optional defaults are used for this example. Two columns of output are produced: the support values and their probabilities. In addition, by default, a plot of the probability mass function is created with hash marks on the point mass lines to show the breakdown of the probability for each of the support values for the different possible outcomes (see function km.outcomes for details).

library(conf)
#  display the probability mass function

km.pmf(n=3, h = 1/2, perc = 0.5)

[^3]: Qin Y., Sasinowska H. D., Leemis L. M. (2023), “The Probability Mass Function of the Kaplan–Meier Product–Limit Estimator,” The American Statistician, 77 (1), 102–110.

Example 2

In other experiments, it may be more reasonable to expect that we have a higher or lower chance of censoring. In this example we will start with a higher rate of right-censoring, so a lower chance that we will observe a failure. Set h = 1/3. We may also want to look at different values of $t_0$. Here we will choose the 75th percentile of $X = \min(T, C)$; that is, perc = 0.75. In addition, we will remove the hash marks, use decimals on the $x$-axis, and increase the size of the dot on top of the point masses.

#  display the probability mass function with lower failure rate (higher censoring rate)

km.pmf(n=3, h = 1/3, perc = 0.75, sep = FALSE, xfrac = FALSE, cex.lollipop = 2)

For comparison purposes, the following plot and probability mass function have an earlier time of interest (perc = 0.35) so it is less likely that all of the observations have occurred making the probability of survival less likely to be 0 or NA, which occur at the end of the experiment. We can also see with the higher rate of censoring that early in the experiment there is a high probability of survival equal to 1. This point mass represents all possible censored items before a failure at the 35th percentile of $X = \min(T, C)$.

#  display the probability mass function with an earlier time of interest

km.pmf(n=3, h = 1/3, perc = 0.35, sep = FALSE, xfrac = FALSE, cex.lollipop = 2)

In addition, instead of examining a different time of interest, we can look at a higher failure rate. For the following plot and probability mass function, we set h = 2/3. We return to the 75th percentile (perc = 0.75). With a lower probability of censoring, we have smaller probabilities at 1 and NA than in the first plot of this example. There is lower probability of 1 because we are more likely to observe at least one failure, and there is lower probability of NA (and higher probability of 0) because we are more likely (with probability 2/3) to observe a failure for the last item on test.

#  display the probability mass function with a higher probability of failure (lower censoring rate)

km.pmf(n=3, h = 2/3, perc = 0.75, sep = FALSE, xfrac = FALSE, cex.lollipop = 2)

Example 3

Since all possible outcomes and probabilities are calculated, large sample size n may affect the speed of the function. Due to CPU and memory limitations, n is limited to values from 1 to 23. For a larger sample size n, it is recommended to set sep = FALSE to remove the hash marks to reduce the delay in rendering the plot, and xfrac = FALSE (removing the exact fractions from the $y$-axis) and cex.lollipop = 0.01 (making tiny dots on top of the point masses) for a better visual effect.

#  display the probability mass function with a sample size of 8
km.pmf(8, 1/2, 0.75, sep = FALSE, xfrac = FALSE, cex.lollipop = 0.01)

Package Notes

For more information on how the $\hat{S}(t)$ values are generated, please refer to the vignette titled km.support.

For more information on the hash marks generated on the plot, please refer to the vignette titled km.outcomes.

In addition, km.pmf calls the functions km.support and km.outcomes.

These functions and vignettes are both available via the link on the conf package webpage.



Try the conf package in your browser

Any scripts or data that you put into this service are public.

conf documentation built on Oct. 1, 2023, 1:07 a.m.