-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlineplot.py
57 lines (43 loc) · 2.03 KB
/
lineplot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from matplotlib import pyplot as plt, font_manager
import numpy as np
np.random.seed(0)
NAME = "lineplot"
ticks_font = font_manager.FontProperties(family='Decima Mono')
plt.style.use([os.path.join(sys.path[0], 'ethplot.mplstyle')])
fig = plt.figure()
LEFT = -0.035
fig.suptitle('Key-value System Throughput',
horizontalalignment='left',
weight='bold', fontsize=20,
x=LEFT, y=1.078)
fig.text(LEFT, 1.0041, "While increasing the amount of SET requests.",
horizontalalignment='left',
weight='medium', fontsize=16, color='#555555')
ax1 = fig.add_subplot(1, 1, 1)
ax1.set_xlabel('SET rate [%]')
ax1.set_ylabel('Requests / s', rotation
='horizontal', horizontalalignment='left')
ax1.yaxis.set_label_coords(LEFT-0.005, 1.03)
ax1.spines['top'].set_visible(False)
ax1.spines['right'].set_visible(False)
ax1.get_xaxis().tick_bottom()
ax1.get_yaxis().tick_left()
x = np.linspace(0, 10)
y = np.sin(x) + 0.5 * x + np.random.randn(50)
p = ax1.plot(x, y, label="System A")
ax1.annotate('System A', xy=(x[-5], y[-5]), xytext=(x[-5], y[-5]-2.8), weight='light', color=p[0].get_color())
y = np.sin(x) + x + np.random.randn(50)
p = ax1.plot(x, y, label="System B")
ax1.annotate('System B', xy=(x[-5], y[-5]), xytext=(x[-5], y[-5]+1.6), weight='light', color=p[0].get_color())
y = np.sin(x) + 2 * x + np.random.randn(50)
p = ax1.plot(x, y, label="System C")
ax1.annotate('System C', xy=(x[-5], y[-5]), xytext=(x[-5], y[-5]+1.0), weight='light', color=p[0].get_color())
y = np.sin(x) + 3 * x + np.random.randn(50)
p = ax1.plot(x, y, label="System D")
ax1.annotate('System D', xy=(x[-5], y[-5]), xytext=(x[-5], y[-5]-1.7), weight='light', color=p[0].get_color())
y = np.sin(x) + 4 * x + np.random.randn(50)
p = ax1.plot(x, y, label="System E")
ax1.annotate('System E', xy=(x[-5], y[-5]), xytext=(x[-5], y[-5]-1.3), weight='light', color=p[0].get_color())
plt.setp(ax1.get_xticklabels(), fontproperties=ticks_font)
plt.setp(ax1.get_yticklabels(), fontproperties=ticks_font)
plt.savefig(NAME + ".png", format='png')