Skip to content

Commit

Permalink
Add units to axes labels.
Browse files Browse the repository at this point in the history
  • Loading branch information
DeanHenze committed Oct 21, 2022
1 parent eb96f9c commit 9c2224e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions verification_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ def residuals_figure(year, wisperdata, iso, pars, axes):
)

axes[0].legend(loc='upper left', markerscale=3)
axes[0].set_xlabel('sensor 2 output', fontsize=12)
axes[0].set_ylabel('sensor 1 output', fontsize=12)
axes[1].set_xlabel('residuals', fontsize=12)
axes[0].set_xlabel(r'sensor 2 output '+u'(\u2030)', fontsize=12)
axes[0].set_ylabel('sensor 1 output '+u'(\u2030)', fontsize=12)
axes[1].set_xlabel('residuals '+u'(\u2030)', fontsize=12)
axes[1].set_ylabel('counts', fontsize=12)


Expand Down

0 comments on commit 9c2224e

Please sign in to comment.