UFH_linear_PLT = @model begin
@param begin
tvBeta ∈ RealDomain(lower = 0)
tvalpha ∈ RealDomain(lower = 0)
Ω ∈ PDiagDomain(1)
σ_add ∈ RealDomain(lower = 0.0001)
end
@random begin
η ~ MvNormal(Ω)
end
@covariates WT FFM eta_cl eta_v PLT_1 PMA BMI PNA
@pre begin
CL = 3.2811 * exp(eta_cl ) * (WT/50)^0.75
Vc = 8.8381 * exp(eta_v )
Beta = tvBeta * exp(η[1])
alpha = tvalpha
end
@dynamics Central1
@derived begin
C = @. Central/Vc
E = @. alpha + (Beta*C)
PTT ~ @. Normal(E, σ_add)
end
end
Hello everyone,
Is there a way to display variables C & E (defined at @derived block) from any of the pumas fitted model functions (inspect, predict) ?
Thanks