aboutsummaryrefslogtreecommitdiffstats
path: root/mnrun/plot.py
diff options
context:
space:
mode:
authorshivesh <s.p.mandalia@qmul.ac.uk>2018-04-16 16:57:08 -0500
committershivesh <s.p.mandalia@qmul.ac.uk>2018-04-16 16:57:08 -0500
commit980508a173cd16aaabbfd15f9491be893e325fbe (patch)
tree616307f73a07b67529eee15709d00f25d0c8c9a3 /mnrun/plot.py
parente8f43856558fc093ac987b0d97f06f2d91b10ced (diff)
downloadGolemFlavor-980508a173cd16aaabbfd15f9491be893e325fbe.tar.gz
GolemFlavor-980508a173cd16aaabbfd15f9491be893e325fbe.zip
Mon Apr 16 16:57:08 CDT 2018
Diffstat (limited to 'mnrun/plot.py')
-rw-r--r--mnrun/plot.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/mnrun/plot.py b/mnrun/plot.py
deleted file mode 100644
index f7e750b..0000000
--- a/mnrun/plot.py
+++ /dev/null
@@ -1,23 +0,0 @@
-import numpy as np
-import matplotlib as mpl
-mpl.use('Agg')
-from matplotlib import pyplot as plt
-from matplotlib import rc
-
-rc('text', usetex=False)
-rc('font', **{'family':'serif', 'serif':['Computer Modern'], 'size':18})
-
-arr = np.load('fr_evidence_test_033_033_033_0010_sfr_033_066_000_DIM6_single_scale.npy')
-
-print arr
-ev = arr.T[1]
-null = ev[0]
-print null
-re_z = -(ev - null)
-print re_z
-
-plt.plot(arr.T[0], re_z)
-plt.xlabel(r'${\rm log}_{10} \Lambda$')
-plt.ylabel(r'Bayes Factor')
-# plt.axhline(np.power(10, 1.5), color='grey', linestyle='-', alpha=0.4)
-plt.savefig('./test.png', bbox_inches='tight', dpi=150)