Is there a PyMC3 equivalent to the pymc.rnormal function, or has it been dropped in favor of numpy.random.normal?
pymc.rnormal
numpy.random.normal
Found it... a bit silly of me. pymc3.Normal(mu,sd).random(), which basically just calls scipy.stats.norm
pymc3.Normal(mu,sd).random()
scipy.stats.norm