diff options
author | Nauman_Ahad <nauman_ahad@xflowresearch.com> | 2016-02-12 20:36:54 +0500 |
---|---|---|
committer | Nauman Ahad <nauman.ahad@xflowresearch.com> | 2016-02-12 15:44:52 +0000 |
commit | b5c0b2b8c5ea0ab734548813a859ac6065138437 (patch) | |
tree | 388a4a01915b76f1b3f29341e72d5dd16a29390d /data/report/qtip_graph.py | |
parent | 6700444ea735f678ed2841fec29ab11947905a1a (diff) |
QTIP report generation docker dependencies resolved
Needed dependencies for report within QTIP docker image
were resolved. Additionally, added an error check in case no
results are available for the report.
Change-Id: Ifd4ccd406555faf156e4274ca312e1ef55ed64b3
Signed-off-by: Nauman_Ahad <nauman_ahad@xflowresearch.com>
Diffstat (limited to 'data/report/qtip_graph.py')
-rw-r--r-- | data/report/qtip_graph.py | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/data/report/qtip_graph.py b/data/report/qtip_graph.py index 3d952824..d7e64140 100644 --- a/data/report/qtip_graph.py +++ b/data/report/qtip_graph.py @@ -1,5 +1,7 @@ -import numpy as np +import matplotlib +matplotlib.use('Agg') import matplotlib.pyplot as plt +import numpy as np def plot_indices(a,b,c): N=3 @@ -18,17 +20,10 @@ def plot_indices(a,b,c): ax.set_xticks(ind+width/2) ax.set_xticklabels(['Compute','Storage','Network']) ax.axis([0,3,0,1.25]) - f.text(0.7,0.01,'* With Comparison to Refernece POD', fontsize=9) - + f.text(0.7,0.01,'* With Comparison to Refernece POD', fontsize=9) + for rect in my_bars: height = rect.get_height() ax.text(rect.get_x() + rect.get_width()/2., 1.05*height, height , ha='center', va='bottom') f.savefig('qtip_graph.jpeg') - - -def main(): - plot_indices(0.83,0.7,1.0) - -if __name__ == "__main__": - main() |