Skip to content

Commit

Permalink
Mod legend loc (issue #5)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickynicolson committed Nov 25, 2022
1 parent 449bfa6 commit b585994
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plotoageo.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ def main():
plt.title("Ratio of open:closed access of {} IPNI nomenclatural acts ({}-{})".format(coverage,args.year_min,args.year_max))
ax.xaxis.set_visible(False)
ax.yaxis.set_visible(False)
ax.legend(loc='lower left')
fig.tight_layout(pad=0)
plt.savefig(args.outputfile_oa, bbox_inches='tight',pad_inches = 0, dpi = 400)

Expand All @@ -96,6 +97,7 @@ def main():
plt.title("Proportion of un-discoverable publications of {} IPNI nomenclatural acts ({}-{})".format(coverage,args.year_min,args.year_max))
ax.xaxis.set_visible(False)
ax.yaxis.set_visible(False)
ax.legend(loc='lower left')
fig.tight_layout(pad=0)
plt.savefig(args.outputfile_unknown, bbox_inches='tight',pad_inches = 0, dpi = 400)

Expand Down

0 comments on commit b585994

Please sign in to comment.