From d5da703b2924974ef38f59ae49b52b8e92fc0deb Mon Sep 17 00:00:00 2001 From: itraviv Date: Sun, 8 Jan 2017 10:11:21 +0200 Subject: changed MPPS to MPPC\Core Norm on all graphs Signed-off-by: itraviv --- doc/TRexDataAnalysis.py | 4 ++-- 1 file 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')) -- cgit 1.2.3-korg