diff options
author | 2017-01-08 10:11:21 +0200 | |
---|---|---|
committer | 2017-01-08 10:11:37 +0200 | |
commit | d5da703b2924974ef38f59ae49b52b8e92fc0deb (patch) | |
tree | b4c8a6cdf94464a2ba1cce3f46d8b04f1c39d3ab /doc | |
parent | 37baac1566350407c06dec958db5b0f1a0101e1b (diff) |
changed MPPS to MPPC\Core Norm on all graphs
Signed-off-by: itraviv <itraviv@cisco.com>
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/TRexDataAnalysis.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/TRexDataAnalysis.py b/doc/TRexDataAnalysis.py index 9ddc3b0f..3f6dc170 100755 --- a/doc/TRexDataAnalysis.py +++ b/doc/TRexDataAnalysis.py @@ -59,7 +59,7 @@ def create_plot_for_dframe_arr(dframe_arr, setup_name, start_date, end_date, sho dframe_all = dframe_all.astype(float)
dframe_all.plot()
plt.legend(fontsize='small', loc='best')
- plt.ylabel('MPPS')
+ plt.ylabel('MPPS/Core (Norm)')
plt.title('Setup: ' + setup_name)
plt.tick_params(
axis='x',
@@ -81,7 +81,7 @@ def create_bar_plot_for_latest_runs_per_setup(dframe_all_tests_latest, setup_nam dframe_all_tests_latest = dframe_all_tests_latest[['Test Name', 'Setup', 'Date', 'MPPS']]
plt.xticks(rotation='horizontal')
plt.xlabel('Index of Tests')
- plt.ylabel('MPPS')
+ plt.ylabel('MPPS/Core (Norm)')
plt.title("Test Runs for Setup: " + setup_name)
if save_path:
plt.savefig(os.path.join(save_path, setup_name + '_latest_test_runs.png'))
|