Is it possible to declare a parameter as a function? For example?
Instead of
Phi, gamma_pdf, 0, 0.1;
Is it possible to declare it as ;
100* (Phi - 1), gamma_pdf, 0.95, 0.1 ?
Is it possible to declare a parameter as a function? For example?
Instead of
Phi, gamma_pdf, 0, 0.1;
Is it possible to declare it as ;
100* (Phi - 1), gamma_pdf, 0.95, 0.1 ?
No, in that case, it is better to define
Phi_trans, gamma_pdf, 0.95, 0.1:
and have a model-local variable in the model-block
#Phi=Phi_trans/100+ 1
that tracks the transformation for you.
Thank you sir