Skip to content

Commit

Permalink
Merge c283c9a into 2d93c3c
Browse files Browse the repository at this point in the history
  • Loading branch information
gowerc authored Apr 2, 2024
2 parents 2d93c3c + c283c9a commit c27d84b
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions vignettes/statistical-specification.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,33 @@ baseline hazard $h_0(.)$. Please note that some of these distributions do not ha
the proportional-hazards property meaning that the resulting survival model corresponding to the hazard $h_i()$ will not be of
the same parametric family as the baseline distribution with the hazard $h_0(.)$.



## Exponential Distribution

$$
h(t \mid \lambda) = \lambda
$$

Where:
- $\lambda > 0$ is the rate parameter

## Weibull Distribution (Proportional Hazard Parameterisation)

$$
h(t \mid \lambda, \gamma) = \lambda \gamma t^{\gamma - 1 };
$$

Where:
- $\lambda > 0$ is the rate parameter
- $\gamma > 0$ is the shape parameter
Note that with $\gamma = 1$ we obtain the exponential distribution as a special case.
## Log-Logistic Distribution

$$
h(x \mid a, b) = \frac
{(b/a)(x/a)^{(b-1)}}
{1 + (x/a)^b}
h(t \mid a, b) = \frac
{(b/a)(t/a)^{(b-1)}}
{1 + (t/a)^b}
$$

Where:
Expand All @@ -69,6 +90,8 @@ Where:
- $b > 0$ is the shape parameter




# Longitudinal Model Specification

## Random-Slope Model
Expand Down

0 comments on commit c27d84b

Please sign in to comment.