From d2cbab2b9d8a0ff03b086455fc8f6b2edf5dd295 Mon Sep 17 00:00:00 2001 From: Markus Date: Wed, 12 Nov 2025 19:35:39 +0100 Subject: [PATCH] chore: Update field name in NPPredictionrow to cens Instead of censoring, more in line with NONMEM etc. --- src/routines/output/predictions.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routines/output/predictions.rs b/src/routines/output/predictions.rs index 02ba08fd0..d755e0f11 100644 --- a/src/routines/output/predictions.rs +++ b/src/routines/output/predictions.rs @@ -21,7 +21,7 @@ pub struct NPPredictionRow { /// The observed value, if any obs: Option, /// Censored observation flag - censoring: Censor, + cens: Censor, /// The population mean prediction pop_mean: f64, /// The population median prediction @@ -216,7 +216,7 @@ impl NPPredictions { outeq: p.outeq(), block: p.occasion(), obs: p.observation(), - censoring: p.censoring(), + cens: p.censoring(), pop_mean: pop_mean[j], pop_median: pop_median[j], post_mean: posterior_mean[j],