Skip to content

Commit

Permalink
Added space before y label units.
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Apr 8, 2014
1 parent b841e41 commit 75b618b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plots/plot_difference.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Plot(Plot):

def add_ylabel(self):
y = self.fit.meta['dependent']
text = r'$\Delta R_{\text{NL}}$' + '$(\si{' + y['siunitx'] + r'})$'
text = r'$\Delta R_{\text{NL}}$' + ' $(\si{' + y['siunitx'] + r'})$'
super().add_ylabel(text)

def main():
Expand Down
2 changes: 1 addition & 1 deletion plots/plot_large_lifetime.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Plot(Plot):

def add_ylabel(self):
y = self.fit.meta['dependent']
text = r'$\Delta R_{\text{NL}}$' + '$(\si{' + y['siunitx'] + r'})$'
text = r'$\Delta R_{\text{NL}}$' + ' $(\si{' + y['siunitx'] + r'})$'
super().add_ylabel(text)

def main():
Expand Down
2 changes: 1 addition & 1 deletion plots/plot_parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Plot(Plot):

def add_ylabel(self):
y = self.fit.meta['dependent']
text = r'$R_{\text{NL}}^+$' + '$(\si{' + y['siunitx'] + r'})$'
text = r'$R_{\text{NL}}^+$' + ' $(\si{' + y['siunitx'] + r'})$'
super().add_ylabel(text)

def main():
Expand Down

0 comments on commit 75b618b

Please sign in to comment.