Skip to content

Commit

Permalink
Fixed label for up and downcast bias
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiaraMonforte committed Jul 12, 2024
1 parent bd59d0e commit b1d18ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glidertest/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def plot_updown_bias(df, ax, xlabel='Temperature [C]'):
A line plot comparing the day and night average over depth for the selcted day
"""
ax.plot(df.dc,df.depth, label='Climb-Dive')
ax.plot(df.dc,df.depth, label='Dive-Climb')
ax.plot(df.cd,df.depth, label='Climb-Dive')
ax.legend(loc=3)
lims = np.abs(df.dc)
Expand Down

0 comments on commit b1d18ec

Please sign in to comment.