From 9f6454e3f3923a61d1f480d4e1b0303aeeefe7b3 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Wed, 5 Jun 2019 15:43:06 -0400 Subject: fix x label --- utils/plot-energy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/plot-energy b/utils/plot-energy index a49fcb0..3c2b587 100755 --- a/utils/plot-energy +++ b/utils/plot-energy @@ -113,6 +113,6 @@ if __name__ == '__main__': for id, df_id in df.groupby('id'): plt.figure() plot_hist(df_id.ke.values) - plt.xlabel("Kinetic Energy") + plt.xlabel("Energy (MeV)") plt.title(str(id)) plt.show() -- cgit