In [1]:
import numpy as np
In [4]:
import matplotlib.pyplot as plt
%matplotlib inline
%config InlineBackend.figure_format = 'retina'
In [2]:
ws = np.load("emcee_chain.npy")
In [3]:
ws.shape
Out[3]:
In [8]:
plt.plot(ws[0, :, 0])
Out[8]:
In [12]:
import seaborn as sns
In [13]:
plt.hist(ws[:, :, 0])
Out[13]:
In [ ]: