Skip to content

Commit

Permalink
write svg and pdf plots
Browse files Browse the repository at this point in the history
  • Loading branch information
alpae committed Jan 20, 2023
1 parent ff07b16 commit ba4c08a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manage_assessment_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,8 +432,8 @@ def print_chart(outdir_dir, summary_file, challenge, classification_type):
outpath = os.path.join(outdir_dir, outname)
fig = plt.gcf()
fig.set_size_inches(18.5, 10.5)
fig.savefig(outname, dpi=100)

fig.savefig(outpath, dpi=100)
fig.savefig(outpath[:-3]+"pdf", dpi=100)
plt.close("all")


Expand Down

0 comments on commit ba4c08a

Please sign in to comment.