Skip to content

Commit 3543e96

Browse files
authored
DOC: Skip parallel_coordinaes, andrews_curves doctests (#61448)
Skip parallel_coordinaes, andrews_curves doctests
1 parent 17f0dd6 commit 3543e96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/plotting/_misc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ def andrews_curves(
412412
>>> df = pd.read_csv(
413413
... "https://raw.githubusercontent.com/pandas-dev/"
414414
... "pandas/main/pandas/tests/io/data/csv/iris.csv"
415-
... )
415+
... ) # doctest: +SKIP
416416
>>> pd.plotting.andrews_curves(df, "Name") # doctest: +SKIP
417417
"""
418418
plot_backend = _get_plot_backend("matplotlib")
@@ -551,7 +551,7 @@ def parallel_coordinates(
551551
>>> df = pd.read_csv(
552552
... "https://raw.githubusercontent.com/pandas-dev/"
553553
... "pandas/main/pandas/tests/io/data/csv/iris.csv"
554-
... )
554+
... ) # doctest: +SKIP
555555
>>> pd.plotting.parallel_coordinates(
556556
... df, "Name", color=("#556270", "#4ECDC4", "#C7F464")
557557
... ) # doctest: +SKIP

0 commit comments

Comments
 (0)