Skip to content

Commit

Permalink
tempo de ida e volta -> rtt
Browse files Browse the repository at this point in the history
  • Loading branch information
gckopper committed Apr 7, 2024
1 parent 6df6a4c commit d50cfe8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion graphs/ping.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def build(save=True):


dataset = list(map(lambda path: read_file(path), paths))
ax.set_ylabel("Tempo de Ida e Volta (ms)", fontsize=16)
ax.set_ylabel("RTT (ms)", fontsize=16)
ax.set_ylim((0, 64))
colors = ["#7EA16B", "#C3D898"]
b = ax.boxplot(dataset, labels=rans, medianprops={"color": "#000000"})
Expand Down
2 changes: 1 addition & 1 deletion graphs/rtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def build(save=True):
count = len(files)
total_count = len(labels)
fig, ax = plt.subplots(1,1)
fig.supylabel("Tempo de Ida e Volta (ms)", fontsize=16)
fig.supylabel("RTT (ms)", fontsize=16)

dataset = []
for i in range(count):
Expand Down

0 comments on commit d50cfe8

Please sign in to comment.