You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Documentation updates. Make user interfaces slightly more readable by moving the @index block to the bottom of each page rather than the top. Fix links to example files
Copy file name to clipboardexpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
8
8
TO DO
9
9
10
-
An implementation and exploration of the [likelihood-based profile-wise analysis workflow](https://doi.org/10.1371/journal.pcbi.1011515) from Matthew Simpson and Oliver Maclaren.
10
+
This package is an implementation and exploration of the [likelihood-based profile-wise analysis workflow](https://doi.org/10.1371/journal.pcbi.1011515) from Matthew Simpson and Oliver Maclaren.
11
11
12
12
The API is largely stable, but shouldn't be regarded as fixed until the first version is released; the package will be kept as v1.0.0-DEV until then. The main work remaining is in completing documentation. However, one of the bivariate boundary methods may be removed.
Copy file name to clipboardexpand all lines: docs/src/examples/binomial_normal_approximation.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Gaussian Approximation of a Binomial Distribution
2
2
3
-
The code included in this example is compiled into a single file [here](https://github.com/JoelTrent/LikelihoodBasedProfileWiseAnalysis.jl/-/tree/main/examples/binomial_normal_approximation.jl).
3
+
The code included in this example is compiled into a single file [here](https://github.com/JoelTrent/LikelihoodBasedProfileWiseAnalysis.jl/blob/main/examples/binomial_normal_approximation.jl).
4
4
5
5
This model is taken from an unreleased paper by the authors of the workflow [simpsonprofilewise2023](@cite). The Binomial distribution is defined as:
Copy file name to clipboardexpand all lines: docs/src/examples/logistic.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Logistic Model
2
2
3
-
The code included in this example is compiled into a single file [here](https://github.com/JoelTrent/LikelihoodBasedProfileWiseAnalysis.jl/-/tree/main/examples/logistic.jl).
3
+
The code included in this example is compiled into a single file [here](https://github.com/JoelTrent/LikelihoodBasedProfileWiseAnalysis.jl/blob/main/examples/logistic.jl).
4
4
5
5
The logistic model with a normal data distribution [simpsonprofilewise2023](@cite) has the following differential equation for the population density ``C(t)\geq0``:
Copy file name to clipboardexpand all lines: docs/src/examples/lotka-volterra.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Lotka-Volterra Model
2
2
3
-
The code included in this example is compiled into a single file [here](https://github.com/JoelTrent/LikelihoodBasedProfileWiseAnalysis.jl/-/tree/main/examples/lotka-volterra.jl).
3
+
The code included in this example is compiled into a single file [here](https://github.com/JoelTrent/LikelihoodBasedProfileWiseAnalysis.jl/blob/main/examples/lotka-volterra.jl).
4
4
5
5
The Lotka-Volterra model with a normal data distribution [simpsonprofilewise2023](@cite) has the following differential equations for the population size of the prey species ``x(t)`` and predator species ``y(t)``:
Copy file name to clipboardexpand all lines: docs/src/examples/two-species_logistic.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Two-Species Logistic Model
2
2
3
-
The code included in this example is compiled into a single file [here](https://github.com/JoelTrent/LikelihoodBasedProfileWiseAnalysis.jl/-/tree/main/examples/two-species_logistic.jl).
3
+
The code included in this example is compiled into a single file [here](https://github.com/JoelTrent/LikelihoodBasedProfileWiseAnalysis.jl/blob/main/examples/two-species_logistic.jl).
4
4
5
5
The two-species logistic model with a Gaussian data distribution [simpsonprofile2023](@cite) has the following differential equations for the population densities of the two species ``C_1(t)\geq0`` and ``C_2(t)\geq0`` :
Documentation for [LikelihoodBasedProfileWiseAnalysis](https://github.com/JoelTrent/LikelihoodBasedProfileWiseAnalysis.jl).
8
8
9
+
This package is an implementation and exploration of the [likelihood-based Profile-Wise Analysis (PWA) workflow](https://doi.org/10.1371/journal.pcbi.1011515) from Matthew Simpson and Oliver Maclaren [simpsonprofilewise2023](@cite). It provides methods for:
10
+
11
+
- Maximum Likelihood Estimation.
12
+
- Calculation of the observed Fisher information matrix (FIM) [pawitanall2001](@cite) and associated approximation of the log-likelihood function.
13
+
- Parameter identifiability analysis.
14
+
- Parameter confidence intervals.
15
+
- Evaluating univariate profiles.
16
+
- Evaluating the boundaries of bivariate profiles and sampling points within these boundaries.
17
+
- Rejection sampling of full parameter vector confidence sets and profiles.
18
+
- Simultaneous prediction of model solutions/trajectories using approximate profile-wise confidence trajectory sets.
19
+
- Simultaneous prediction of population reference sets using approximate profile-wise reference tolerance sets.
20
+
21
+
Additionally, to assist with evaluating the frequentist coverage properties of intervals and sets within the PWA workflow on new models it provides methods for the coverage testing of:
22
+
- Parameter confidence intervals.
23
+
- Bivariate confidence profiles.
24
+
- Profile-wise confidence trajectory sets.
25
+
- Profile-wise reference tolerance sets.
26
+
27
+
To understand the background of the workflow and how it can be used see [Background](@ref). For implementation examples see the examples section, such as on a [Logistic Model](@ref). To better understand how to interact with the user interface and in particular the [`LikelihoodModel`](@ref), which holds all the information on computed profiles and predictions, check out the user interface starting with [Initialisation](@ref).
28
+
29
+
The API is largely stable, but shouldn't be regarded as fixed until the first version is released; the package will be kept as v1.0.0-DEV until then. The main work remaining is in completing documentation. However, one of the bivariate boundary methods may be removed.
30
+
31
+
A package developed to fulfil the requirements of a Masters of Engineering at The University of Auckland by Joel Trent between March 2023 and February 2024.
32
+
33
+
Supervised by Oliver Maclaren, Ruanui Nicholson and Matthew Simpson.
34
+
35
+
## Getting Started: Installation
36
+
37
+
To install the package, use the following command inside the Julia REPL. In the future this will be able to be installed directly rather than via the url.
## Alternatives for Likelihood-Based Uncertainty Quantification
51
+
52
+
If you are solely interested in parameter identifiability analysis and computing parameter confidence intervals we recommend [LikelihoodProfiler](https://insysbio.github.io/LikelihoodProfiler.jl/stable/), which is generally more stable and faster than the implementation in this package on the models we've tested.
53
+
54
+
[ProfileLikelihood](https://danielvandh.github.io/ProfileLikelihood.jl/stable/) is another excellent package which implements the PWA workflow from [simpsonprofilewise2023](@cite) - it has a different interface and its own set of heuristics for computing profiles.
55
+
56
+
[InformationGeometry](https://rafaelarutjunjan.github.io/InformationGeometry.jl/stable/) can compute the exact confidence regions/boundaries of models using differential geometry. It would be an interesting approach which could potentially evaluate confidence set boundaries more efficiently than the heuristics implemented in this package. Resultantly, its use within the PWA workflow may be worth investigating.
Copy file name to clipboardexpand all lines: docs/src/refs.bib
+49-30
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,43 @@
1
+
@book{coleparameter2020,
2
+
location = {New York},
3
+
title = {Parameter Redundancy and Identifiability},
4
+
isbn = {978-1-315-12000-3},
5
+
pagetotal = {272},
6
+
publisher = {Chapman and Hall/{CRC}},
7
+
author = {Cole, Diana},
8
+
year = {2020},
9
+
url = {https://doi.org/10.1201/9781315120003},
10
+
}
11
+
12
+
@article{murphyimplementing2023,
13
+
title = {Implementing measurement error models in a likelihood-based framework for estimation, identifiability analysis, and prediction in the life sciences},
14
+
author = {Murphy, Ryan J. and Maclaren, Oliver J. and Simpson, Matthew J.},
15
+
doi = {10.48550/arXiv.2307.01539},
16
+
year = {2023},
17
+
journal = {arXiv:2307.01539}
18
+
}
19
+
20
+
@book{pawitanall2001,
21
+
title = {In All Likelihood: Statistical Modelling and Inference Using Likelihood},
22
+
isbn = {978-0-19-850765-9},
23
+
shorttitle = {In All Likelihood},
24
+
pagetotal = {528},
25
+
publisher = {Oxford University Press},
26
+
author = {Pawitan, Yudi},
27
+
year = {2001},
28
+
}
29
+
30
+
@article{rauestructural2009,
31
+
title = "{Structural and practical identifiability analysis of partially observed dynamical models by exploiting the profile likelihood}",
author = {Raue, A. and Kreutz, C. and Maiwald, T. and Bachmann, J. and Schilling, M. and Klingmüller, U. and Timmer, J.},
38
+
year = {2009},
39
+
}
40
+
1
41
@article{simpsonprofilewise2023,
2
42
title = {Profile-Wise Analysis: A profile likelihood-based workflow for identifiability analysis, estimation, and prediction with mechanistic mathematical models},
3
43
volume = {19},
@@ -18,36 +58,15 @@ @article{simpsonprofile2023
18
58
year = {2023},
19
59
}
20
60
21
-
@article{rauestructural2009,
22
-
title = "{Structural and practical identifiability analysis of partially observed dynamical models by exploiting the profile likelihood}",
Copy file name to clipboardexpand all lines: docs/src/user_interface/initialisation.md
+6-4
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,5 @@
1
1
# Initialisation
2
2
3
-
```@index
4
-
Pages = ["initialisation.md"]
5
-
```
6
-
7
3
## Model Initialisation
8
4
9
5
To initialise a model for profile likelihood evaluation we use [`initialise_LikelihoodModel`](@ref) which returns a struct of type [`LikelihoodModel`](@ref). This struct contains all the information we require for the PWA workflow and will also contain computed profiles and profile-wise predictions.
Copy file name to clipboardexpand all lines: docs/src/user_interface/plots.md
+6-4
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,5 @@
1
1
# Plots
2
2
3
-
```@index
4
-
Pages = ["plots.md"]
5
-
```
6
-
7
3
We provide functions for plotting univariate profiles, bivariate profiles and predictions of the model trajectory and ``(1-\delta)`` population reference set from evaluated parameter confidence sets (i.e. profiles).
Copy file name to clipboardexpand all lines: docs/src/user_interface/predictions.md
+6-4
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,5 @@
1
1
# Predictions
2
2
3
-
```@index
4
-
Pages = ["predictions.md"]
5
-
```
6
-
7
3
## Adding a Prediction Function
8
4
9
5
In the event that a prediction function has not been added to the [`LikelihoodModel`](@ref) struct yet, we can add one using [`add_prediction_function!`](@ref). This prediction function is for model solutions/trajectory and not the additional error we account for when predicting realisations.
@@ -53,4 +49,10 @@ Predictions are stored in a [`PredictionStruct`](@ref) which will also contain a
Copy file name to clipboardexpand all lines: docs/src/user_interface/profiles_and_samples/bivariate.md
+8-4
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,6 @@
1
1
# Bivariate Profiles
2
2
3
-
```@index
4
-
Pages = ["bivariate.md"]
5
-
```
3
+
The key function for evaluating bivariate profile boundaries is [`bivariate_confidenceprofiles!`](@ref). The evaluated bivariate profile(s) will be contained within a [`BivariateConfidenceStruct`](@ref) that is stored in the [`LikelihoodModel`](@ref).
6
4
7
5
```@docs
8
6
bivariate_confidenceprofiles!
@@ -40,9 +38,15 @@ MPPHullMethod
40
38
41
39
## Merging Boundaries From Multiple Methods
42
40
43
-
To improve the performance of internal point sampling, it may be worth finding bivariate boundaries using a combination of methods, where one method has more guaranteed boundary coverage and the other gives a more random search of interest parameter space, such as combining [`IterativeBoundaryMethod`](@ref)with[`SimultaneousMethod`](@ref) into a [`CombinedBivariateMethod`](@ref).
41
+
To improve the performance of internal point sampling, it may be worth finding bivariate boundaries using a combination of methods, where one method has more guaranteed boundary coverage and the other gives a more random search of interest parameter space. For example, combining [`IterativeBoundaryMethod`](@ref)and[`SimultaneousMethod`](@ref) into a [`CombinedBivariateMethod`](@ref).
We can generate samples within the log-likelihood boundary at any dimension of model interest parameters. Nuisance parameters will be set to the values that maximise the log-likelihood function, found using an optimisation scheme. Samples are only implemented for the true log-likelihood function (the [`LogLikelihood`](@ref) profile type).
8
4
9
5
## Sample Types
10
6
7
+
Three methods are implemented for rejection sampling of parameter confidence sets within the supplied parameter bounds. These will be inefficient if the bounds are not well-specified (are not close to the boundary of the desired parameter confidence set), and as both the model parameter dimension increases and the interest parameter dimension of the profile increases. By default these are the bounds contained with [`CoreLikelihoodModel`](@ref), however, seperate bounds can be supplied for the purposes of sampling. Uniform grid sampling, uniform random sampling and sampling from a random Latin Hypercube scheme (the default) are supported.
8
+
11
9
```@docs
12
10
AbstractSampleType
13
11
UniformGridSamples
@@ -17,14 +15,24 @@ LatinHypercubeSamples
17
15
18
16
## Full Likelihood Sampling
19
17
18
+
To sample a confidence set for the full parameter vector, a full parameter confidence set, we use [`full_likelihood_sample!`](@ref). The sampled confidence set will be contained within a [`SampledConfidenceStruct`](@ref) that is stored in the [`LikelihoodModel`](@ref).
19
+
20
20
```@docs
21
21
full_likelihood_sample!
22
22
```
23
23
24
24
## Dimensional Likelihood Sampling
25
25
26
-
Note: dimensional likelihood samples can be 'full' likelihood samples as well.
26
+
Similarly, to sample a confidence set for an interest subset of the parameter vector, a 'dimensional profile', we use [`dimensional_likelihood_samples!`](@ref). The sampled confidence set(s) will be contained within a [`SampledConfidenceStruct`](@ref) that is stored in the [`LikelihoodModel`](@ref).
27
+
28
+
Note: dimensional likelihood samples can be 'full' likelihood samples as well. These will be computed before any other dimensional samples.
Copy file name to clipboardexpand all lines: docs/src/user_interface/profiles_and_samples/profile_structs.md
+8-4
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,9 @@
1
1
# Structs and Profile Types
2
2
3
-
```@index
4
-
Pages = ["profile_structs.md"]
5
-
```
6
-
7
3
## Structs
8
4
5
+
The following structs are used to contain information on computed univariate, bivariate and sampled dimensional profiles. After evaluation they are stored in the [`LikelihoodModel`](@ref).
The key function for evaluating univariate profiles (the parameter confidence interval and corresponding points along the profile as desired) is [`univariate_confidenceintervals!`](@ref). The evaluated univariate profile(s) will be contained within a [`UnivariateConfidenceStruct`](@ref) that is stored in the [`LikelihoodModel`](@ref).
Here we cover the background / general idea of the PWA workflow as seen in [simpsonprofilewise2023](@cite). We also introduce the idea of reference tolerance sets for predictions of realisations/observations within the workflow as introduced in my [Masters thesis](https://github.com/JoelTrent/UoA_MastersWorking).
4
+
5
+
This is a summary of the content in my [Masters thesis](https://github.com/JoelTrent/UoA_MastersWorking).
6
+
7
+
This summary uses models of the form 'deterministic mathematical model + error model' as in [simpsonprofilewise2023](@cite) and [murphyimplementing2023](@cite), but it can also be used with stochastic models [simpsonreliable2022](@cite).
Copy file name to clipboardexpand all lines: src/model_initialiser.jl
+7
Original file line number
Diff line number
Diff line change
@@ -191,6 +191,13 @@ Initialises a [`LikelihoodModel`](@ref) struct, which contains all model informa
191
191
- `dim_row_preallocation_size`: number of rows of `dim_samples_df` to preallocate. Default is `missing` (a single row).
192
192
- `find_zero_atol`: a `Real` number greater than zero for the absolute tolerance of the log-likelihood function value from the target value to be used when searching for confidence intervals/boundaries. Default is `0.001`.
193
193
- `show_progress`: Whether to show the progress of profiling and predictions.
194
+
195
+
!!! note "Array initialisation within a log-likelihood function"
196
+
If you initialise an array within the provided log-likelihood function, e.g. using `zeros`, then for automatic differentiation methods to work you need to also initialise the type of the array to be based on the type of the input values of θ. Otherwise, zeros will by default create an array with element types `Float64` which will likely return errors. For example, use:
197
+
```julia
198
+
my_new_array = zeros(eltype(θ), dimensions)
199
+
```
200
+
where `eltype` passes the element type of the θ vector into the `zeros` function.
0 commit comments