大豆异黄酮 MBMA 实战#

基于模型的荟萃分析(model based meta-analysis,MBMA)是一种将定量药理学建模与荟萃分析(meta-analysis)相结合的分析方法。相较于群体 PK-PD 建模的方法而言,MBMA 可以整合多个来源(临床前和临床研究、个体数据和文献数据等)和维度(人口学特征、试验设计方案、给药方案等)的临床数据以解决单个临床研究难以回答的问题。MBMA 通过构建定量药理学模型可合并分析不同剂量、不同疗程和不同人群的数据并探索其中导致异质性的潜在因素,从而对药物的剂量-效应关系、时间-效应关系和影响因素进行定量化,并可基于模型预测以往研究中未涉及的剂量、时间或协变量水平下的药效特征,为药物研发各个关键环节的决策制定提供重要依据。MBMA 目前已经是模型引导的药物开发策略中的重要方法之一。

在本节中,我们将以大豆异黄酮治疗更年期潮热的模拟临床试验数据为例,操练 MBMA 的基本建模方法与熟悉整体分析流程。

参考文献

了解更多有关 MBMA 的知识:

  • 李禄金, 丁俊杰, 刘东阳, 王曦培, 邓晨辉, & 季双敏等. (2020). 基于模型的荟萃分析一般考虑. 中国临床药理学与治疗学(025-011).

大豆异黄酮治疗更年期潮热 MBMA 文献:

  • Li, L., Lv, Y., Xu, L., & Zheng, Q. (2015). Quantitative efficacy of soy isoflavones on menopausal hot flashes. British journal of clinical pharmacology, 79(4), 593–604.

数据探索#

  1. 我们可从 mas.datasets 内导入大豆异黄酮 MBMA 示例数据 soy_isoflavone

from mas.datasets import datasets
from mas.model import *

import polars as pl
soy_data = datasets.soy_isoflavone
soy_data.head(10)
shape: (10, 8)
IDTIMEDVSAMPLEAGEBASELINECENTREYEAR
i64i64f64i64i64f64i64i64
100.0159363.811
112-20.0159363.811
200.0135413.601
28-51.6135413.601
300.0105426.301
31-49.0105426.301
32-68.0105426.301
33-77.0105426.301
34-82.3105426.301
35-86.0105426.301

数据内的各列分别代表:

  • ID:试验编号

  • TIME:观测时间(周)

  • DV:观测值,自基线的潮热发作频率下降率(%)

  • SAMPLE:试验的样本量

  • AGE:受试者平均年龄

  • BASELINE:基线时患者的平均潮热发作频率(次/天)

  • CENTRE:是否为多中心研究,0 代表单中心研究,1 代表多中心研究

  • YEAR:是否来源于近十年发表的文献,0 为否,1 为是

  1. 使用 plot_profile() 来观测数据趋势:

pf_plt = plot_profile(soy_data)
pf_plt
  1. 从上图可以发现,观测值数据有随时间变化而先下降后平稳的趋势(例如 ID=3 的数据),提示我们可以使用 Emax 模型作为基础模型进行建模。

备注

Emax 模型的公式为:

\[ Effect = E_{max} \times (\frac{time}{ET_{50} + time}) \]

其中 Emax 为最大效应值,ET50 为达到 50% 最大效应所需的时间,ET50 越小则说明起效越快(图 543)。

../../_images/model-emax.png

图 543 不同 ET50 对模型曲线的影响示意图#

模型构建#

对于不含微分方程的模型(例如 Emax 模型),我们可以直接使用 Module 来构建模型:

class Soy(Module):
    def __init__(self, emax, et50, eta_emax, eta_et50, eps) -> None:
        self.theta_emax = theta(emax, bounds=(-200, -0.01))
        self.theta_et50 = theta(et50, bounds=(0.01, 12))

        self.eta_emax = omega(eta_emax)
        self.eta_et50 = omega(eta_et50)

        self.eps = sigma(eps)

        self.t = column("TIME")
        self.sample = column("SAMPLE")

    def pred(self):
        emax = self.theta_emax * exp(self.eta_emax)
        et50 = self.theta_et50 * exp(self.eta_et50)

        eff = (emax * self.t) / (et50 + self.t)
        ipred = eff

        w = 1 / self.sample**0.5  # 根据样本量对残差加权
        y = ipred + w * self.eps

        return y
model = PopModel(Soy(emax=-50, et50=3, eta_emax=0.5, eta_et50=0.5, eps=10), data=soy_data)

模型拟合#

  1. 我们使用 FOCEi 算法来拟合模型:

fit_res = model.fit(FOCEi(print=10))
➡️ Since build cache already exists, skip compile
[WARNING] Casting TIME to numeric dtype
[WARNING] Casting SAMPLE to numeric dtype
✈️ First Order Conditional Estimation
Using BFGS...
* maxiter = 9999
* xtol = 1e-06
* ftol = 1e-06
* lower_bounds = 
* upper_bounds = 
* log_level = 0
* print = 10
* print_type = 0
* verbose = 1
* p_small = 0.1
* rel_step_size = 0.001

#0    ofv: 237.3966213
x: 1.0000e-01  1.0000e-01  1.0000e-01  1.0000e-01  1.0000e-01  
Gradients: 88.8985 17.2541 33.4152 4.88097 11.7542 

Funcalls: 5
#1    ofv: 237.3316422
x: 6.4537e-02  9.3117e-02  8.6670e-02  9.8053e-02  9.5311e-02  
Gradients: 84.708 16.569 31.4135 4.7312 10.0447 

Funcalls: 12
converged = True
n_iter = 9
x_opt = 2.4051e-01  -1.5402e-02 -2.1642e-01 4.0184e-02  6.9229e-02  
f_opt = 229.9503656
fun_calls = 93
message: Minimization success

Computing Covariance...
Covariance computation succeed
fit_res

Estimation Summary

OFVConvergedTotal IterationsCompilation TimeEstimation TimeCovariance Time
229.950True ✅90:00:00.20:00:00.240:00:00.32

Parameter Estimation

ParameterEstimateShrinkage(%)RSE(%)
Theta
theta_emax-44.9199.030
theta_et502.74916.082
Omega(SD)
eta_emax0.5153.0479.699
eta_et500.66626.00813.242
Sigma(SD)
eps3.06620.7599.419
  1. 根据本次拟合的参数估计结果,我们来更新基础模型的参数初值并重新拟合,以获取更准确的参数估计值:

est = fit_res.estimates
est
ParameterValue
Theta
theta_emax-44.919
theta_et502.749
Omega(SD)
eta_emax0.515
eta_et500.666
Sigma(SD)
eps3.066
model = PopModel(
    Soy(
        emax=est.theta["theta_emax"],
        et50=est.theta["theta_et50"],
        eta_emax=est.omega["eta_emax", "eta_emax"],
        eta_et50=est.omega["eta_et50", "eta_et50"],
        eps=est.sigma["eps", "eps"],
    ),
    data=soy_data,
)
fit_res = model.fit(FOCEi(print=10))
➡️ Since build cache already exists, skip compile
[WARNING] Casting TIME to numeric dtype
[WARNING] Casting SAMPLE to numeric dtype
✈️ First Order Conditional Estimation
Using BFGS...
* maxiter = 9999
* xtol = 1e-06
* ftol = 1e-06
* lower_bounds = 
* upper_bounds = 
* log_level = 0
* print = 10
* print_type = 0
* verbose = 1
* p_small = 0.1
* rel_step_size = 0.001

converged = True
n_iter = 3
x_opt = 9.9785e-02  1.0001e-01  9.9987e-02  1.0000e-01  9.9996e-02  
f_opt = 229.9503616
fun_calls = 56
message: Minimization success

Computing Covariance...
Covariance computation succeed
fit_res

Estimation Summary

OFVConvergedTotal IterationsCompilation TimeEstimation TimeCovariance Time
229.950True ✅30:00:00.20:00:00.190:00:00.28

Parameter Estimation

ParameterEstimateShrinkage(%)RSE(%)
Theta
theta_emax-44.9269.032
theta_et502.74916.085
Omega(SD)
eta_emax0.5153.0479.715
eta_et500.66626.00713.258
Sigma(SD)
eps3.06620.7599.420

上述结果表明,模型参数估计结果已收敛且较为准确,可以进行下一步分析。

协变量筛选与模型评价#

在 MBMA 研究中,由于被纳入分析的文献或临床试验中的受试者人口学特征及试验设计方法差异较大,往往会导致报道结果间的异质性(heterogeneity)。为了保证分析结果的可靠性,我们需要通过探索和构建协变量(covariates)模型来识别和测量这些异质性,以解释药效学参数的变异来源,明确药物行为的影响因素,增强结果的可靠性和临床意义。

考察的协变量应具有一定的临床意义或符合药物的药理机制,常考察的协变量包括:人口学特征(如年龄、体重、种族)、疾病状态(如基线值、疾病周期)、试验设计方案(如对照药类型、试验中心数、制剂类型)、治疗相关因素(如合并用药、辅助疗法)等。本例中将考察的协变量为:AGEBASELINECENTREYEAR。此外,也需要决定将被引入协变量的固定效应参数——一般选择具有较强临床意义和可解释性的参数。在本例中我们将仅在 Emax 参数上引入协变量。

目前最常用的协变量筛选方法为 SCM 法(stepwise covariates modeling)。SCM 法中包括前向引入(forward selection)与逆向剔除(backward selection)的两个过程(图 544)。在向前引入过程中,将待筛选的协变量逐个引入至模型固定效应参数上,观察引入后模型目标函数值(objective function value,OFV)是否有显著下降;保留能最显著降低 OFV 的一个协变量于模型中,随后重复尝试逐个引入余下的协变量,直至 OFV 不再显著降低。逆向剔除过程中,则将逐个剔除已被引入模型的协变量,观测剔除后 OFV 是否有显著上升;剔除令 OFV 上升最少的一个协变量,随后重复逐个剔除剩余的协变量,直至 OFV 不再显著上升。在两个步骤中均能使 OFV 显著变化的协变量将会保留在模型中,此时的模型即为最终模型。

../../_images/model-scm.png

图 544 SCM 法步骤示意图#

参考文献

Jonsson, E. N., & Karlsson, M. O. (1998). Automated covariate model building within NONMEM. Pharmaceutical research, 15(9), 1463–1468.

  1. 在将协变量引入模型之前,我们需要先考虑协变量间的相关性。对于两两间存在较强相关性的协变量,应只考察其中一个,以避免共线性问题影响最终结果。使用 plot_covariate_matrix() 可以绘制协变量相关性矩阵图:

cov_mat = plot_covariates(soy_data, categorical=["CENTRE", "YEAR"], exclude=["SAMPLE"])
cov_mat.with_layout(width=600, height=600)
  1. 观测上述相关性计算结果可以发现,YEAR 与其他的变量相关性较强。在后续 SCM 法中将仅考察除了 YEAR 外的协变量。

  1. 若要进行 SCM 法,我们需要编写一个继承于 ScmConfig 的类并在其中配置 SCM 法相关设置。与定义模型参数类似,我们在 def __init__(self) 中定义需要考察的协变量及其类型(例如是否为分类变量)。我们在以 @spec 装饰的函数中指定需要考察的协变量-参数关系与引入形式。例如:

est = fit_res.estimates


class SoyScmConfig(Soy, ScmConfig):
    def __init__(self) -> None:
        super().__init__(
            emax=est.theta["theta_emax"],
            et50=est.theta["theta_et50"],
            eta_emax=est.omega["eta_emax", "eta_emax"],
            eta_et50=est.omega["eta_et50", "eta_et50"],
            eps=est.sigma["eps", "eps"],
        )
        self.search_direction = "both"

        self.p_forward = 0.01

        self.p_backward = 0.005

        self.age = column("AGE")

        self.baseline = column("BASELINE")
        self.centre = column("CENTRE", is_categorical=True)

    @spec
    def spec(self):
        self.test(
            tv=self.theta_emax, covariates=[self.age, self.baseline], states=["exclude", "linear", "exp", "power"]
        )
        self.test(tv=self.theta_emax, covariates=self.centre, states="*")

编写配置时的部分要点如下:

  • 使用 @spec 装饰器来说明此函数内包含需要被测试的协变量-参数关系。可以指定多个被 @spec 装饰的函数来考察多组关系。

  • self.test() 中定义需要考察的协变量-参数关系与引入形式;若想考察所有可能的引入形式,可直接使用 states="*"

  1. 配置编写完成后,使用 scm() 方法即可执行 SCM 法:

scm_res = fit_res.scm(SoyScmConfig)
  1. 运行完成后,可以使用 final_modelas_pandas() 分别查看最终模型以及运行日志:

final_model = scm_res["spec"].final_model
final_model
class Soy__1_2(Module):
    """
    theta_emax ~ baseline @ linear
    """

    def __init__(self):
        super().__init__()
        self.theta_emax = theta(-46.4190003962965, bounds=(-200.0, -0.01), fixed=False)
        self.theta_et50 = theta(2.79286116144465, bounds=(0.01, 12.0), fixed=False)
        self.theta_emax__baseline_1 = theta(0.4136794993787466, bounds=(-0.5555555555555556, 0.8333333333333333), fixed=False)
        self.eta_emax = omega(0.1716146382473557, fixed=False)
        self.eta_et50 = omega(0.47748900594065496, fixed=False)
        self.eps = sigma(9.367625822959335, fixed=False)
        self.t = column('TIME', typ='numeric', is_categorical=False)
        self.sample = column('SAMPLE', typ='numeric', is_categorical=False)
        self.age = column('AGE', typ='numeric', is_categorical=False)
        self.baseline = column('BASELINE', typ='numeric', is_categorical=False)
        self.centre = column('CENTRE', typ='numeric', is_categorical=True)

    def pred(self):
        theta_emax__age = 1
        theta_emax__baseline = 1 + self.theta_emax__baseline_1 * (self.baseline - 4.5)
        theta_emax__centre = 1
        theta_emax__with_cov = self.theta_emax * theta_emax__age * theta_emax__baseline * theta_emax__centre
        emax = theta_emax__with_cov * exp(self.eta_emax)
        et50 = self.theta_et50 * exp(self.eta_et50)
        eff = emax * self.t / (et50 + self.t)
        ipred = eff
        w = 1 / self.sample ** 0.5
        y = ipred + w * self.eps
        return y
scm_res["spec"]

Summary

StepTestOFVDDFP ValueAcceptedSelectedModel
1theta_emax ~ AGE @ linear229.306(+0.644)10.422 > 0.01 (forward)NoSoy__1_1
theta_emax ~ BASELINE @ linear215.684(+14.266)10.000 < 0.01 (forward)YesSoy__1_2
theta_emax ~ CENTRE @ linear222.900(+7.050)10.008 < 0.01 (forward)YesSoy__1_3
2theta_emax ~ AGE @ linear215.662(+0.022)10.881 > 0.01 (forward)NoSoy__2_1
theta_emax ~ BASELINE @ exp216.940(-1.256)0999 > 0.01 (forward)NoSoy__2_2
theta_emax ~ CENTRE @ linear211.380(+4.304)10.038 > 0.01 (forward)NoSoy__2_3
3theta_emax ~ BASELINE @ exclude229.950(-14.266)-10.000 < 0.005 (backward)NoSoy__3_2
  1. SCM 完成后,我们仍需要检查最终模型的参数估计结果并对最终模型进行模型评价,以保证最终模型参数估算准确且模型较为稳定。

final_fit_res = final_model.fit_result
final_fit_res

Estimation Summary

OFVConvergedTotal IterationsCompilation TimeEstimation TimeCovariance Time
215.684True ✅160:00:00.10:00:00.61

Parameter Estimation

ParameterEstimateShrinkage(%)RSE(%)
Theta
theta_emax-46.419
theta_et502.793
theta_emax__baseline_10.414
Omega(SD)
eta_emax0.4146.125
eta_et500.69122.313
Sigma(SD)
eps3.06120.734
gof_plt = final_fit_res.plot_gof()
gof_plt
vpc_res = final_fit_res.vpc()
vpc_res.plot()
Running Auto-bin...
Bin search ended, result is 7
Auto-bin completed, finally use 5 bins.
bs_res = final_fit_res.bootstrap(500)
|=====|=====|=====|=====|=====|=====|=====|=====| 40
|=====|=====|=====|=====|=====|=====|=====|=====| 80
|=====|=====|=====|=====|=====|=====|=====|=====| 120
|=====|=====|=====|=====|=====|=====|=====|=====| 160
|=====|=====|=====|=====|=====|=====|=====|=====| 200
|=====|=====|=====|=====|=====|=====|=====|=====| 240
|=====|=====|=====|=====|=====|=====|=====|=====| 280
|=====|=====|=====|=====|=====|=====|=====|=====| 320
|=====|=====|=====|=====|=====|=====|=====|=====| 360
|=====|=====|=====|=====|=====|=====|=====|=====| 400
|=====|=====|=====|=====|=====|=====|=====|=====| 440
|=====|=====|=====|=====|=====|=====|=====|=====| 480
|=====|=====|=====|=====| 500
Bootstrap data sampling...
✅ Bootstrap complete.
bs_res

Bootstrap Summary

Success Rate (%)Elapsed Time
100.0000:03:31.88

Parameter Summary

ParameterEstimateMedian95%CI
Theta
theta_emax-46.419-46.770-54.043, -39.771
theta_et502.7932.7671.983, 3.908
theta_emax__baseline_10.4140.4050.204, 0.551
Omega(SD)
eta_emax0.4140.4020.300, 0.503
eta_et500.6910.6560.453, 0.850
Sigma(SD)
eps3.0613.0082.426, 3.537

上述结果表明,SCM 法得到的最终模型参数估算准确、拟合良好,且预测性能与稳定性均较优,可以作为最终模型并进行模型模拟。

这也提示我们,基线时患者的平均潮热发作频率将显著影响大豆异黄酮治疗潮热的最大效应——当患者基线发作频率越高时,大豆异黄酮越能降低潮热发作频率。

模型模拟#

当最终模型构建完成后,可以使用它来模拟不同场景下的大豆异黄酮药效典型值。

  1. 例如欲了解患者基线发作频率分别为 3.5、4.0、4.5 次/天时大豆异黄酮在 12 周时可降低多少发作率,我们可以构建如下模拟场景:

import numpy as np

scenario = pl.DataFrame(
    {
        "ID": np.repeat([1, 2, 3], 13),
        "TIME": np.tile(np.arange(0, 13, 1), 3),
        "BASELINE": np.repeat([3.5, 4, 4.5], 13),
        "SAMPLE": np.repeat([100], 13 * 3),
        "GROUP": np.repeat(["Low", "Median", "High"], 13),
    }
)
scenario = scenario.cast({"GROUP": pl.Enum(["Low", "Median", "High"])})
scenario
shape: (39, 5)
IDTIMEBASELINESAMPLEGROUP
i32i32f64i32enum
103.5100"Low"
113.5100"Low"
123.5100"Low"
133.5100"Low"
143.5100"Low"
384.5100"High"
394.5100"High"
3104.5100"High"
3114.5100"High"
3124.5100"High"
  1. 可以通过 final_model.fit_result.simulate() 来使用最终模型参数估计结果进行模拟:

sim_res = final_model.fit_result.simulate(data=scenario)
[WARNING] Casting TIME to numeric dtype
[WARNING] Casting SAMPLE to numeric dtype
[WARNING] Casting AGE to numeric dtype
[WARNING] Casting CENTRE to numeric dtype
  1. 我们使用图形来比较不同基线水平下大豆异黄酮群体药效典型值。从下图中可以发现:当患者基线发作频率为 3.5、4.0、4.5 次/天时,大豆异黄酮在 12 周时可分别降低 22.08%、29.87%、37.66% 的发作频率。根据此模拟结果,可在后续研究中进一步比较大豆异黄酮与其他药物的疗效差异。

sim_ind_plot = (
    sim_res.plot_ind(y_name="_PRED_")
    .with_x_axis(axis_label="Time (wk)")
    .with_y_axis(axis_label="Typical Effect (%)")
    .with_facet_wrap("GROUP")
    .with_title(text="Simulated Typical Effect")
)
sim_ind_plot