Skip to content

Commit

Permalink
Charts are now in english
Browse files Browse the repository at this point in the history
  • Loading branch information
gckopper committed Jun 24, 2024
1 parent 85ea061 commit ff24eab
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions graphs/cpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ def build(save=True):
ax.set_xlabel(core, fontsize=12)

# Add some text for labels, title and custom x-axis tick labels, etc.
fig.supylabel('Consumo de CPU (%)', fontsize=14)
fig.supylabel('CPU Utilization (%)', fontsize=14)
#axes[len(axes)//2].set_xlabel("Tempo (s)", fontsize=14)
axes[-1].legend(loc='upper right', ncols=2, fontsize=12)
fig.supxlabel("Tempo (s)", fontsize=14)
fig.supxlabel("Time (s)", fontsize=14)

#fig.set_tight_layout()
fig.set_size_inches(10.4, 4.2)
Expand Down
2 changes: 1 addition & 1 deletion graphs/iperf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def from_iter(x):
return np.fromiter(map(conv, x['intervals']), float)

def build(save=True):
ax.set_ylabel("Taxa de Transferência (Mbps)", fontsize=16)
ax.set_ylabel("Throughput Rate (Mbps)", fontsize=16)

dataset = []
for i in range(count):
Expand Down
2 changes: 1 addition & 1 deletion graphs/ram.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def build(save=True):
multiplier += 1

# Add some text for labels, title and custom x-axis tick labels, etc.
ax.set_ylabel('Consumo de Mémoria (GB)', fontsize=14)
ax.set_ylabel('Memory Utilization (GB)', fontsize=14)
ax.set_xticks(x + width/2, labels, fontsize=12)
ax.set_ylim(0, 10)
ax.legend(loc='upper right', ncols=2, fontsize=12)
Expand Down
4 changes: 2 additions & 2 deletions graphs/ric.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
]

ylabels = [
"Tempo de Resposta (μs)",
"Tempo de Resposta (ms)",
"Response Time (μs)",
"Response Time (ms)",
]

scaling_factor = [
Expand Down

0 comments on commit ff24eab

Please sign in to comment.