Skip to contents

This function generates random samples from a primary event censored distribution. It adjusts the distribution by accounting for the primary event distribution and potential truncation at a maximum delay (D). The function allows for custom primary event distributions and delay distributions.

Usage

rprimarycensoreddist(
  n,
  rdist,
  pwindow = 1,
  swindow = 1,
  D = Inf,
  rprimary = stats::runif,
  rprimary_args = list(),
  oversampling_factor = 1.2,
  ...
)

rpcens(
  n,
  rdist,
  pwindow = 1,
  swindow = 1,
  D = Inf,
  rprimary = stats::runif,
  rprimary_args = list(),
  oversampling_factor = 1.2,
  ...
)

Arguments

n

Number of random samples to generate.

rdist

Function to generate random samples from the delay distribution for example stats::rlnorm() for lognormal distribution.

pwindow

Primary event window

swindow

Integer specifying the window size for rounding the delay (default is 1). If swindow = 0 then no rounding is applied.

D

Maximum delay (truncation point). If finite, the distribution is truncated at D. If set to Inf, no truncation is applied. Defaults to Inf.

rprimary

Function to generate random samples from the primary distribution (default is stats::runif()).

rprimary_args

List of additional arguments to be passed to rprimary.

oversampling_factor

Factor by which to oversample the number of samples to account for truncation (default is 1.2).

...

Additional arguments to be passed to the distribution function.

Value

Vector of random samples from the primary event censored distribution censored by the secondary event window.

Details

The mathematical formulation for generating random samples from a primary event censored distribution is as follows:

  1. Generate primary event times (p) from the specified primary event distribution (f_p) within the primary event window (pwindow): $$p \sim f_p(x), \quad 0 \leq x \leq pwindow$$

  2. Generate delays (d) from the specified delay distribution (f_d) with parameters theta: $$d \sim f_d(x; \theta)$$

  3. Calculate the total delays (t) by adding the primary event times and the delays: $$t = p + d$$

  4. Apply truncation to ensure that the delays are within the specified range [0, D]: $$t_{truncated} = \{t \mid 0 \leq t < D\}$$

  5. Round the truncated delays to the nearest secondary event window (swindow): $$t_{valid} = \lfloor \frac{t_{truncated}}{swindow} \rfloor \times swindow$$

The function oversamples to account for potential truncation and generates additional samples if needed to reach the desired number of valid samples.

See also

Primary event censored distribution functions dprimarycensoreddist(), pprimarycensoreddist()

Examples

# Example: Lognormal distribution with uniform primary events
rprimarycensoreddist(10, rlnorm, meanlog = 0, sdlog = 1)
#>  [1] 1 6 2 1 2 0 1 4 1 3

# Example: Lognormal distribution with exponential growth primary events
rprimarycensoreddist(
  10, rlnorm,
  rprimary = rexpgrowth, rprimary_args = list(r = 0.2),
  meanlog = 0, sdlog = 1
)
#>  [1] 0 1 4 2 2 3 0 2 1 0