Skip to content

Commit 6046a29

Browse files
committed
Finishing Chapter 8
1 parent d708103 commit 6046a29

1 file changed

Lines changed: 34 additions & 6 deletions

File tree

book/book.tex

Lines changed: 34 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3852,7 +3852,7 @@ \section{The glucose minimal model}
38523852

38533853
\section{Data}
38543854

3855-
To develop and test the model, I'll use data from Pacini and Bergman\footnote{"MINMOD: a computer program to calculate insulin sensitivity and pancreatic responsivity from the frequently sampled intravenous glucose tolerance test", {\em Computer Methods and Programs in Biomedicine} 23: 113-122.}.
3855+
To develop and test the model, I'll use data from Pacini and Bergman (1986)\footnote{"MINMOD: a computer program to calculate insulin sensitivity and pancreatic responsivity from the frequently sampled intravenous glucose tolerance test", {\em Computer Methods and Programs in Biomedicine} 23: 113-122.}.
38563856

38573857
The dataset is in a file in the repository for this book, which we can read into a DataFrame:
38583858

@@ -4218,17 +4218,45 @@ \section{Interpreting parameters}
42184218
%
42194219
So if we find parameters that make the model fit the data, we can use $k_3 / k_2$ as an estimate of $S_I$.
42204220

4221-
For the example data, the estimated values of $S_G$ and $S_I$ are $0.029$ and for $8.9 \times 10^{-4}$.
4221+
For the example data, the estimated values of $S_G$ and $S_I$ are $0.029$ and for $8.9 \times 10^{-4}$. According to Pacini and Bergman, these values are within the normal range.
42224222

4223-
Normal?
42244223

4225-
Units?
4224+
\section{The insulin minimal model}
4225+
4226+
In addition to the glucose minimal mode, Pacini and Bergman present an insulin minimal model, in which the concentration of insulin, $I$, is governed by this differential equation:
4227+
%
4228+
\[ \frac{dI}{dt} = -k I(t) + \gamma \left[ G(t) - G_T \right] t \]
4229+
%
4230+
where
42264231

4232+
\begin{itemize}
42274233

4234+
\item $k$ is a parameter that controls the rate of insulin disappearance independent of blood glucose.
4235+
4236+
\item $G(t)$ is the measured concentration of blood glucose at time $t$.
4237+
4238+
\item $G_T$ is the glucose threshold; when blood glucose is above this level, it triggers an increase in blood insulin.
4239+
4240+
\item $\gamma$ is a parameter that controls the rate of increase (or decrease) in blood insulin when glucose is above (or below) $G_T$.
4241+
4242+
% TODO: explain why t is there
4243+
4244+
\end{itemize}
4245+
4246+
The initial condition is $I(0) = I_0$. As in the glucose minimal model, we treat the initial condition as a parameter which we'll choose to fit the data.
4247+
4248+
The parameters of this model can be used to estimate, $\phi_1$ and $\phi_2$, which are values that ``describe the sensitivity to glucose of the first and second phase pancreatic responsivity". They are related to the parameters as follows:
4249+
%
4250+
\[ \phi_1 = \frac{I_{max} - I_b}{k (G_0 - G_b)}\]
4251+
%
4252+
\[ \phi_2 = \gamma \times 10^4 \]
4253+
%
4254+
where $I_{max}$ is the maximum measured insulin level, and $I_b$ and $G_b$ are the basal levels of insulin and glucose.
4255+
4256+
In the notebook for this chapter, you will have a chance to implement this model, find the parameters that best fit the data, and estimate these values.
42284257

4229-
\section{The insulin minimal model}
42304258

4231-
Introduce the exercise
4259+
\chapter{Projectiles}
42324260

42334261

42344262

0 commit comments

Comments
 (0)