forked from dfm/corner.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.py
25 lines (21 loc) · 991 Bytes
/
demo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
import numpy as np
import corner
# Set up the parameters of the problem.
ndim, nsamples = 3, 50000
# Generate some fake data.
data1 = np.random.randn(ndim * 4 * nsamples / 5).reshape([4 * nsamples / 5,
ndim])
data2 = (5 * np.random.rand(ndim)[None, :]
+ np.random.randn(ndim * nsamples / 5).reshape([nsamples / 5, ndim]))
data = np.vstack([data1, data2])
# Plot it.
figure = corner.corner(data, labels=[r"$x$", r"$y$", r"$\log \alpha$",
r"$\Gamma \, [\mathrm{parsec}]$"],
truths=[0.0, 0.0, 0.0],
quantiles=[0.16, 0.5, 0.84],
show_titles=True, title_args={"fontsize": 12})
figure.gca().annotate("A Title", xy=(0.5, 1.0), xycoords="figure fraction",
xytext=(0, -5), textcoords="offset points",
ha="center", va="top")
figure.savefig("demo.png")