Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Gregory Ashton
PyFstat
Commits
46e15cd7
Commit
46e15cd7
authored
Apr 11, 2017
by
Gregory Ashton
Browse files
Fixes corner_plot prior for rescaled params
parent
29bc9c7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
pyfstat/mcmc_based_searches.py
View file @
46e15cd7
...
...
@@ -571,7 +571,7 @@ class MCMCSearch(core.BaseSearchClass):
fig
.
subplots_adjust
(
hspace
=
0.05
,
wspace
=
0.05
)
if
add_prior
:
self
.
add_prior_to_corner
(
axes
,
samples
_plt
)
self
.
add_prior_to_corner
(
axes
,
self
.
samples
)
fig_triangle
.
savefig
(
'{}/{}_corner.png'
.
format
(
self
.
outdir
,
self
.
label
),
dpi
=
dpi
)
...
...
@@ -587,8 +587,8 @@ class MCMCSearch(core.BaseSearchClass):
subtractor
=
self
.
get_rescale_subtractor_for_key
(
key
)
ax2
=
ax
.
twinx
()
ax2
.
get_yaxis
().
set_visible
(
False
)
ax2
.
plot
(
x
,
[(
prior
(
xi
)
-
subtractor
)
*
multiplier
for
xi
in
x
],
'-r'
)
ax
.
set_xlim
(
xlim
)
ax2
.
plot
(
(
x
-
subtractor
)
*
multiplier
,
[
prior
(
xi
)
for
xi
in
x
],
'-r'
)
ax
2
.
set_xlim
(
xlim
)
def
plot_prior_posterior
(
self
,
normal_stds
=
2
):
""" Plot the posterior in the context of the prior """
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment