Skip to content

Commit

Permalink
Merge branch 'development' into fix_issue_#313
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-springer committed Dec 11, 2024
2 parents 569f276 + 9ae16c3 commit 10ce591
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rdtools/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ def degradation_summary_plots(yoy_rd, yoy_ci, yoy_info, normalized_yield,
ax2.set_xlim(hist_xmin, hist_xmax)

label = (
' $R_{d}$ = %.2f%%/yr \n'
'confidence interval: \n'
'%.2f to %.2f %%/yr' % (yoy_rd, yoy_ci[0], yoy_ci[1])
f" $R_{{d}}$ = {yoy_rd:.2f}%/yr \n"
f"confidence interval: \n"
f"{yoy_ci[0]:.2f} to {yoy_ci[1]:.2f} %/yr"
)
if detailed:
n = yoy_values.notnull().sum()
Expand Down

0 comments on commit 10ce591

Please sign in to comment.