diff options
| author | shivesh <s.p.mandalia@qmul.ac.uk> | 2019-04-14 12:25:09 -0500 |
|---|---|---|
| committer | shivesh <s.p.mandalia@qmul.ac.uk> | 2019-04-14 12:25:09 -0500 |
| commit | e0b8d804b294c38f3e8d6e75ceb227378ec6c37c (patch) | |
| tree | 63f14ceaa53fb45dcfcf89f1efe56fa959e37af7 /fig2.py | |
| parent | a9d381454eeb383209ac0d8d859e3f255840d083 (diff) | |
| download | GolemFlavor-e0b8d804b294c38f3e8d6e75ceb227378ec6c37c.tar.gz GolemFlavor-e0b8d804b294c38f3e8d6e75ceb227378ec6c37c.zip | |
Sun 14 Apr 12:25:09 CDT 2019
Diffstat (limited to 'fig2.py')
| -rwxr-xr-x | fig2.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -99,7 +99,7 @@ def main(): n_params = len(paramset) print n_params - chains = np.load('/data/user/smandalia/flavour_ratio/data/contour_emcee/golemfit/real/_GOLEMFIT_REAL_emcee_.npy') + chains = np.load('/data/user/smandalia/flavour_ratio/data/contour/contour_REAL.npy') # chains = np.load('/data/user/smandalia/flavour_ratio/data/contour_emcee/golemfit/real/more_sys_flat/_GOLEMFIT_REAL_emcee_.npy') print chains @@ -110,9 +110,11 @@ def main(): nbins = 25 + ax_labels = [r'$f_{e}$', r'$f_{\mu}$', r'$f_{\tau}$'] + fig = plt.figure(figsize=(8, 8)) ax = fig.add_subplot(111) - tax = plot_utils.get_tax(ax, scale=nbins) + tax = plot_utils.get_tax(ax, scale=nbins, ax_labels=ax_labels) plot_utils.flavour_contour( frs = flavour_ratios, |
