Skip to content

Commit e1bf175

Browse files
committed
up
1 parent dfd8028 commit e1bf175

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/src/inverse_problems/petab_ode_param_fitting.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ data_vals = (0.8 .+ 0.4*rand(10)) .* data_sol[:P][2:end]
2929
3030
# Plots the true solutions and the (synthetic data) measurements.
3131
using Plots
32+
default(bottom_margin=4Plots.Measures.mm,left_margin=4Plots.Measures.mm) # hide
3233
plot(true_sol; idxs=:P, label="True solution", lw=8)
3334
plot!(data_ts, data_vals; label="Measurements", seriestype=:scatter, ms=6, color=:blue)
3435
```
@@ -489,7 +490,7 @@ There exist various types of graphs that can be used to evaluate the parameter f
489490

490491
To, for a single start calibration run, plot, for each iteration of the optimization process, the best objective value achieved so far, run:
491492
```@example petab1
492-
default(bottom_margin=4Plots.Measures.mm,left_margin=4Plots.Measures.mm) # hide
493+
res = calibrate_model(petab_problem, p0, IPNewton(); save_trace=true) # hide
493494
plot(res)
494495
```
495496

0 commit comments

Comments
 (0)