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
Copy file name to clipboardExpand all lines: docs/src/index.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,11 +21,10 @@ The researcher defines ranges and distributions for model parameters and perform
21
21
22
22
2.**Selection of a VPop from the plausible population**
23
23
Although the plausible population satisfies biological constraints, it does not necessarily reproduce clinical trial outcomes. The goal of this step is therefore to select a subset of patients that matches reported clinical endpoints.
24
-
This subset selection problem is formulated as a mixed-integer programming (MIP) problem. Binary variables 𝑥𝑖 ∈ {0,1} indicate whether a plausible patient is included in the VPop, subject to a constraint on the desired VPop size. The objective function minimizes the mismatch between simulated and experimental data across multiple clinical endpoints.
24
+
This subset selection problem is formulated as a mixed-integer programming (MIP) problem. Binary variables xᵢ ∈ {0,1} indicate whether a plausible patient is included in the VPop, subject to a constraint on the desired VPop size. The objective function minimizes the mismatch between simulated and experimental data across multiple clinical endpoints.
25
25
Since individual patient data are often unavailable, the method focuses on endpoints reported as cohort-level statistics, such as means, std, quantiles, and survival data.
26
26
27
-
Details on the mathematical formulation of the objective function terms, corresponding to different types of clinical data, can be found in DigiPopData package documentation:
28
-
https://hetalang.github.io/DigiPopData.jl/dev/
27
+
Details on the mathematical formulation of the objective function terms, corresponding to different types of clinical data, can be found in [DigiPopData package documentation](https://hetalang.github.io/DigiPopData.jl/dev/)
Copy file name to clipboardExpand all lines: docs/src/tutorial/Braniff2024_NSCLC.md
+13-10Lines changed: 13 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,18 +10,18 @@ In the original study, individual patient data were used for VPop selection, inc
10
10
First, we load the simulated plausible population and use the `load_vpop` function to select the columns in the plausible patient table that correspond to clinically reported endpoints.
11
11
12
12
```julia
13
-
using VPopMIP, CSV, DataFrames, Plots, StatsBase, StatsPlots
Next, we load clinical data (individual patient data for the *drug* and *placebo* regimens) and convert it into summary statistics using predefined metrics available in [DigiPopData](https://hetalang.github.io/DigiPopData.jl/dev/), to represent a more realistic scenario.
0 commit comments