From: itraviv Date: Sun, 8 Jan 2017 08:11:21 +0000 (+0200) Subject: changed MPPS to MPPC\Core Norm on all graphs X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F28%2F5228%2F1;p=trex.git changed MPPS to MPPC\Core Norm on all graphs Signed-off-by: itraviv --- 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'))