diff options
author | tlatorre <tlatorre@uchicago.edu> | 2019-06-05 15:43:06 -0400 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2019-06-05 15:43:06 -0400 |
commit | 9f6454e3f3923a61d1f480d4e1b0303aeeefe7b3 (patch) | |
tree | e840b2e523240d7766754057d7a9994809edc3fc | |
parent | 94f138d68338e49a94a1518ea4b554ea37d16099 (diff) | |
download | sddm-9f6454e3f3923a61d1f480d4e1b0303aeeefe7b3.tar.gz sddm-9f6454e3f3923a61d1f480d4e1b0303aeeefe7b3.tar.bz2 sddm-9f6454e3f3923a61d1f480d4e1b0303aeeefe7b3.zip |
fix x label
-rwxr-xr-x | utils/plot-energy | 2 |
1 files changed, 1 insertions, 1 deletions
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() |