Skip to content
Snippets Groups Projects
Unverified Commit e0c30d3f authored by Benjamin Loison's avatar Benjamin Loison
Browse files

Improving SVG figure file name in `plot_statistics.py`

parent c0f8c901
Branches
No related tags found
No related merge requests found
......@@ -62,8 +62,9 @@ targetsAxis.set_xlabel('Block height')
for ax, color in zip(axes, axesColors):
ax.tick_params(axis='y', colors=color)
plt.title('Variable difficulty Bitcoin compressed blockchain evolution')
title = 'Variable difficulty Bitcoin compressed blockchain evolution'
plt.title(title)
plt.show()
fig.set_size_inches((11.2, 7.5), forward=False)
#plt.savefig('data.svg')
\ No newline at end of file
#plt.savefig(f'{title.lower().replace(" ", "")}.svg')
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment