How do I provide a prior distribution for a coefficient with mean in the range 1e-05 and standard deviation (sd) in the range 1e-06?
What are the distributions to choose for such high precision (sd <= 1e-06) parameters in rstanarm?
1) Student t family
2) Hierarchical shrinkage family
3) Laplace family
4) Dirichlet family
5) others
I have tried using prior = normal(location = 1e-05, scale = 1e-06, autoscale = FALSE)
, but it takes a lot of time for sampling.