truncate X axis at 14 instead of 15 in message_hops plot

This commit is contained in:
Sergei Tikhomirov 2024-03-05 16:33:50 +01:00
parent 37d788eb77
commit 3ae10e3412
No known key found for this signature in database
GPG Key ID: 6A1F8ED9D6538027
2 changed files with 251 additions and 275 deletions

View File

@ -39,7 +39,7 @@ with plt.style.context(['science', 'ieee']):
ax2.set(**dict(ylabel='\nBandwidth amplification'))
# Set the limits of the x-axis and y-axis
ax1.set_xlim(2, 15)
ax1.set_xlim(2, 14)
ax1.set_ylim(2, ax1.get_ylim()[1]) # Ensure that the lower limit is 2
# Set the limits of the second y-axis to match the first y-axis

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 73 KiB