Hello!
I have a quick question about OptimalDesign in Pumas: is there a built-in way to handle BLQ data in design evaluation?
I have tried
@derived begin
conc_model := @. Central
CONC_normal := @. Normal(Central, sqrt(σ_add²))
CONC ~ @. censored_latent(CONC_normal, LLOQ, Inf)
end
vs
@derived begin
conc_model := @. Central
CONC ~ @. Normal(Central, sqrt(σ_add²))
end
but the results are the same
Thanks in advance!
Lucie