-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmark.html
More file actions
12 lines (12 loc) · 1.18 KB
/
benchmark.html
File metadata and controls
12 lines (12 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
</head>
<body>
<div id="plot" style="width:100%;"></div>
<script>
Plotly.newPlot('plot', [{"x":[400,10000,90000,490000,2250000],"y":[0.20382500000001377,0.9641416666666723,15.627250000000009,0.6243833333333271,5477.156908333334],"name":"Nested Loop","line":{"color":"#f1634c","width":3},"mode":"lines+markers","type":"scatter"},{"x":[400,10000,90000,490000,2250000],"y":[0.2774666666666595,0.37281666666666524,2.812500000000019,0.5320416666667143,146.5714916666669],"name":"Proxy Graph (pre-built)","line":{"color":"#37b98b","width":3},"mode":"lines+markers","type":"scatter"},{"x":[400,10000,90000,490000,2250000],"y":[0.19033333333332791,0.7021916666666735,2.556208333333359,0.6854249999999903,83.4335749999979],"name":"Non-Proxy Graph (pre-built)","line":{"color":"#6b8cff","width":3},"mode":"lines+markers","type":"scatter"}], {"xaxis":{"title":"Number of Transactions"},"yaxis":{"title":"Average runtime (ms)","tickformat":".0s"},"font":{"size":18},"legend":{"orientation":"h","x":0.5,"xanchor":"center","y":1.2},"margin":{"l":100,"r":40,"t":70,"b":80}});
</script>
</body>
</html>