Questions tagged [pymc3]

PyMC (formerly PyMC3) is a Python module that implements Bayesian statistical models and fitting algorithms, including Markov chain Monte Carlo. Its flexibility and extensibility make it applicable to a large suite of problems. Along with core sampling functionality, PyMC includes methods for summarizing output, plotting, goodness-of-fit and convergence diagnostics.

PyMC is a Python module that implements Bayesian statistical models and fitting algorithms, including Markov chain Monte Carlo.

Its flexibility and extensibility make it applicable to a large suite of problems. Along with core sampling functionality, PyMC includes methods for summarizing output, plotting, goodness-of-fit and convergence diagnostics.

706 questions
-1
votes
1 answer

pymc determine sum of random variables

I have two independent Normal distributed random variables a, b. In pymc, it's something like: from pymc import Normal def model(): a = Normal('a', tau=0.01) b = Normal('b', tau=0.1) I'd like to know what's a+b if we can see it as a…
1 2 3
47
48