Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add documentation for missing survival distributions #297

Merged
merged 2 commits into from
Apr 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 scale parameter
gowerc marked this conversation as resolved.
Show resolved Hide resolved

## Weibull Distribution (Proportional Hazard Parameterisation)

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

Where:
- $\lambda > 0$ is the scale parameter
gowerc marked this conversation as resolved.
Show resolved Hide resolved
- $\gamma > 0$ is the shape parameter

gowerc marked this conversation as resolved.
Show resolved Hide resolved
## 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
danielinteractive marked this conversation as resolved.
Show resolved Hide resolved
{(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
Loading