I am having difficulties in writing the following equation into a Stan model.
$$ y_i = \mu(x_i) + \epsilon_i \\ \epsilon_i \sim N(\theta,\sigma^2) \\ \mu(x_i) = a + b x_i \\ p(a) = p(b) \propto 1 \\ \sigma^2 \sim Inv-Gamma(0.001, 0.001) $$
Everything else is pretty much simple and clear, but how I should interpret the line of $p(a) = p(b) \propto 1$? I assume this has to be in transformed parameters
block, but I can't seem to find any online resources that would show good examples.
Thanks in advance.