Skip to content

Commit 3467dc5

Browse files
authored
Merge pull request #26 from huonw/huonw/3557-kib
size-graph.py: Modify legend to kilobytes
2 parents d61a4c1 + 9311388 commit 3467dc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

size-graph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
print(df)
1919

2020
fig, ax = plt.subplots(figsize=(9.6, 7.2))
21-
df.plot(y="size", color="gray", ax=ax, dashes=(2, 1), label="Size: multiple binaries (byte)")
22-
df.plot(y="multisize", color="green", ax=ax, dashes=(4, 1), label="Size: multicall binary (byte)")
21+
df.plot(y="size", color="gray", ax=ax, dashes=(2, 1), label="Size: multiple binaries (kilobytes)")
22+
df.plot(y="multisize", color="green", ax=ax, dashes=(4, 1), label="Size: multicall binary (kilobytes)")
2323
plt.title("Size evolution of Rust/Coreutils")
2424
fig.autofmt_xdate()
2525
plt.margins(0.01)

0 commit comments

Comments
 (0)