Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/routines/output/predictions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub struct NPPredictionRow {
/// The observed value, if any
obs: Option<f64>,
/// Censored observation flag
censoring: Censor,
cens: Censor,
/// The population mean prediction
pop_mean: f64,
/// The population median prediction
Expand Down Expand Up @@ -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],
Expand Down