Skip to content
Snippets Groups Projects
Commit 09251b5f authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Fix alpha of checkpoint plot

parent ac9dc71f
No related branches found
No related tags found
1 merge request!750Improve ptemcee
......@@ -616,7 +616,7 @@ def plot_walkers(walkers, nburn, thin, parameter_labels, outdir, label):
nwalkers, nsteps, ndim = walkers.shape
idxs = np.arange(nsteps)
fig, axes = plt.subplots(nrows=ndim, ncols=2, figsize=(8, 3 * ndim))
scatter_kwargs = dict(lw=0, marker="o", markersize=1)
scatter_kwargs = dict(lw=0, marker="o", markersize=1, alpha=0.05,)
# Plot the burn-in
for i, (ax, axh) in enumerate(axes):
ax.plot(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment