StatisticsHealthEconomics / multimcm

Bayesian relative mixture cure modelling with Stan.
https://StatisticsHealthEconomics.github.io/multimcm
Other
0 stars 0 forks source link

use distribution functions instead of passing parameters direct #28

Open n8thangreen opened 2 weeks ago

n8thangreen commented 2 weeks ago

other similar package, e.g. multinma, baggr, use things like normal(0,1) or gamma(1,1) to specify the input argument prior. At the moment I just pass the name of the argument, e.g. in the previous example mean=0, sd=1 but its probably neater and more user-friendly to switch.

Basically, what these distribution functions do is just return a list of distribution names and parameters.

n8thangreen commented 2 weeks ago

actually this is already in Issue #26