Skip to content

Commit 5bb8d10

Browse files
Merge pull request #2561 from SciML/ChrisRackauckas-patch-5
Update for StructuralIdentifiability API changes
2 parents 150a01a + f7e9d1e commit 5bb8d10

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/tutorials/parameter_identifiability.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ After that, we are ready to check the system for local identifiability:
6969
```julia
7070
# query local identifiability
7171
# we pass the ode-system
72-
local_id_all = assess_local_identifiability(de, p = 0.99)
72+
local_id_all = assess_local_identifiability(de, prob_threshold = 0.99)
7373
```
7474

7575
We can see that all unknowns (except $x_7$) and all parameters are locally identifiable with probability 0.99.
@@ -78,7 +78,7 @@ Let's try to check specific parameters and their combinations
7878

7979
```julia
8080
to_check = [de.k5, de.k7, de.k10 / de.k9, de.k5 + de.k6]
81-
local_id_some = assess_local_identifiability(de, funcs_to_check = to_check, p = 0.99)
81+
local_id_some = assess_local_identifiability(de, funcs_to_check = to_check, prob_threshold = 0.99)
8282
```
8383

8484
Notice that in this case, everything (except the unknown variable $x_7$) is locally identifiable, including combinations such as $k_{10}/k_9, k_5+k_6$
@@ -183,7 +183,7 @@ end
183183
# check only 2 parameters
184184
to_check = [ode.b, ode.c]
185185

186-
global_id = assess_identifiability(ode, funcs_to_check = to_check, p = 0.9)
186+
global_id = assess_identifiability(ode, funcs_to_check = to_check, prob_threshold = 0.9)
187187
```
188188

189189
Both parameters `b, c` are globally identifiable with probability `0.9` in this case.

0 commit comments

Comments
 (0)