Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix labels on single point lines #213

Merged
merged 2 commits into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added labellines/baseline/test_single_point_line.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 11 additions & 6 deletions labellines/line_label.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,18 @@ def _update_anchors(self):
xdata = xdata[mask]
ydata = ydata[mask]

# Find the first line segment surrounding x
for i, (xa, xb) in enumerate(zip(xdata[:-1], xdata[1:])):
if min(xa, xb) <= x <= max(xa, xb):
ya, yb = ydata[i], ydata[i + 1]
break
# If the valid data is a single point, then just use that point
if len(xdata) == 1:
xa, xb = xdata[0], xdata[0]
ya, yb = ydata[0], ydata[0]
else:
raise ValueError("x label location is outside data range!")
# Find the first line segment surrounding x
for i, (xa, xb) in enumerate(zip(xdata[:-1], xdata[1:])):
if min(xa, xb) <= x <= max(xa, xb):
ya, yb = ydata[i], ydata[i + 1]
break
else:
raise ValueError("x label location is outside data range!")

# Interpolate y position of label, (interp needs sorted data)
if xa != xb:
Expand Down
7 changes: 7 additions & 0 deletions labellines/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,13 @@ def test_auto_layout(setup_mpl):
return plt.gcf()


@pytest.mark.mpl_image_compare
def test_single_point_line(setup_mpl):
plt.plot(1, 1, label="x")
labelLines(plt.gca().get_lines())
return plt.gcf()


def test_warning_out_of_range():
X = [0, 1]
Y = [0, 1]
Expand Down