feat: bbox_inches='tight' added to Corr.show savefig

This commit is contained in:
Fabian Joswig 2022-06-20 15:50:56 +01:00
parent 13b688c4b2
commit b047f12c12

View file

@ -846,7 +846,7 @@ class Corr:
if save:
if isinstance(save, str):
fig.savefig(save)
fig.savefig(save, bbox_inches='tight')
else:
raise Exception("'save' has to be a string.")