Closed lucavd closed 6 months ago
I found a small error in the example reported here https://strengejacke.github.io/sjstats/reference/auto_prior.html
'## usage '# ap <- auto_prior(mf, efc, TRUE) '# brm(mf, data = efc, priors = ap)
the correct code for brm is brm(mf, data = efc, prior = ap) without the "s" in priors
brm(mf, data = efc, prior = ap)
Thank you for your work and marvelous package
I found a small error in the example reported here https://strengejacke.github.io/sjstats/reference/auto_prior.html
'## usage
'# ap <- auto_prior(mf, efc, TRUE)
'# brm(mf, data = efc, priors = ap)
the correct code for brm is
brm(mf, data = efc, prior = ap)
without the "s" in priorsThank you for your work and marvelous package