Skip to content

Commit 706fb5e

Browse files
committed
DOC/TST: add GH#61764 tag and rename test_linecollection.py
1 parent 3badad1 commit 706fb5e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pandas/plotting/_matplotlib/core.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1558,6 +1558,8 @@ def _make_plot(self, fig: Figure) -> None:
15581558
*not* time-series and have no stacking or error bars, all columns are
15591559
rendered with a single LineCollection for a large speed-up while keeping
15601560
public behaviour identical to the original per-column path.
1561+
1562+
GH#61764
15611563
"""
15621564
# decide once whether we can use the LineCollection fast draw
15631565
threshold = 200

pandas/tests/plotting/frame/test_linecollection_speedup.py renamed to pandas/tests/plotting/frame/test_linecollection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
Ensure wide DataFrame.line plots use a single LineCollection
3-
instead of one Line2D per column (PR #61764).
3+
instead of one Line2D per column (GH #61764).
44
"""
55

66
import numpy as np

0 commit comments

Comments
 (0)