Skip to content

Commit 83f0af3

Browse files
committed
Fix: save world map plot as PNG
1 parent 23a2742 commit 83f0af3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kaleidoscope/val/plots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def plot(
212212
)
213213
decorate(ax, xlabel, ylabel, xlim, ylim, title)
214214
if fn is not None:
215-
fig.savefig(f"{fn}.pdf")
215+
fig.savefig(f"{fn}.png", bbox_inches="tight", dpi=300)
216216
if show:
217217
fig.show()
218218
plt.close()

0 commit comments

Comments
 (0)