Skip to content
Snippets Groups Projects
Commit cda58d79 authored by kipp's avatar kipp
Browse files

make y axis linear.

parent e64908c0
No related branches found
No related tags found
No related merge requests found
......@@ -170,7 +170,7 @@ likelihoods = background_likelihoods + injections_likelihoods
likelihoods.sort()
x = map(fap, likelihoods)
y = map(tap, likelihoods)
axes.loglog(x, y)
axes.semilogx(x, y)
axes.set_xlim(min(x), max(x))
axes.set_ylim(min(y), max(y))
......
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