Confused about lognormal family in brms

Hi! I am fitting a brms model using the brms lognormal family with reaction times in milliseconds as the outcome.

The documentation states that the links are identity for the mean and log for sigma, but:

  • When I get the default priors the default for the intercept is student_t(3, 6.6, 2.5) which to me looks like it’s in logs.
  • When I print the summary, it says Links: mu = identity; sigma = identity.

Can anybody shed light? :)

Do you have any predictors in your model?

The parameters of a Lognormal distribution does not correspond to its central moments (e.g. mean and variance/standard deviation). I recommend the Wikipedia article for further reading.

Yeah, I think it’s because the Stan lpdf parameterizes it on the log scale? 16.1 Lognormal Distribution | Stan Functions Reference

This is also relevant:

Thank you, that seems to be relevant indeed.

I will open an issue on GitHub because it seems to be a discrepancy in documentation, rather a general question. :)

Thanks all!