Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create figure in current directory #273

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions examples/des_y1_3x2pt/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
cobaya_evaluate_output*
*.png
2 changes: 1 addition & 1 deletion examples/des_y1_3x2pt/des_y1_3x2pt_PT.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def run_likelihood() -> None:
[a.legend(fontsize="small") for a in ax]

fig.suptitle("PT Cls, including IA, galaxy bias, magnification")
fig.savefig("plots/pt_cls.png", facecolor="white", dpi=300)
fig.savefig("pt_cls.png", facecolor="white", dpi=300)

plt.show()

Expand Down
2 changes: 1 addition & 1 deletion examples/des_y1_3x2pt/des_y1_cosmic_shear_TATT.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def run_likelihood() -> None:
# plt.xlim(right=5e3)
# plt.ylim(bottom=1e-12)
plt.title("TATT IA")
plt.savefig("plots/tatt.png", facecolor="white", dpi=300)
plt.savefig("tatt.png", facecolor="white", dpi=300)

plt.show()

Expand Down