I am using rstan to estimate a model. After the sampler runs, I use plot()
to produce a plot of point estimates and uncertainty intervals for the estimated parameters. However, it uses the "ugly" names for the parameters (e.g. sigma_individual
), and I would like to report "pretty" names (e.g. Individual-level SD
) on the axis labels.
I have figured out I can use scale_y_continuous(breaks=1:2, labels=c("a","b")
, but it seems to change the order of things, which makes it hard to know exactly what I'm doing.