From charlesreid1

Revision as of 23:42, 5 November 2017 by Admin (talk | contribs) (→‎Resources)

Python package for performing Monte Carlo simulations.

PyMC3 is the newest and preferred version of the software.

Quick Start

Importing Components

The quick start guide is here: http://docs.pymc.io/notebooks/api_quickstart.html

It starts by importing the necessary components:

%matplotlib inline
import numpy as np
import theano.tensor as tt
import pymc3 as pm

import seaborn as sns
import matplotlib.pyplot as plt
sns.set_context('notebook')


Resources

Github: PyMC3 repository

Book: Bayesian Methods for Hackers by Cam Davidson

Book: Doing Bayesian Data Analysis by John Kruschke

iPython Notebook: Doing Bayesian Data Analysis

Flags