From 780a61ca9399440c9069a22af953ee8c960169c3 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Fri, 16 May 2025 11:59:02 -0700 Subject: [PATCH] Skip parallel_coordinaes, andrews_curves doctests --- pandas/plotting/_misc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/plotting/_misc.py b/pandas/plotting/_misc.py index 75ff40f1eca90..6b2b89ee2618c 100644 --- a/pandas/plotting/_misc.py +++ b/pandas/plotting/_misc.py @@ -412,7 +412,7 @@ def andrews_curves( >>> df = pd.read_csv( ... "https://raw.githubusercontent.com/pandas-dev/" ... "pandas/main/pandas/tests/io/data/csv/iris.csv" - ... ) + ... ) # doctest: +SKIP >>> pd.plotting.andrews_curves(df, "Name") # doctest: +SKIP """ plot_backend = _get_plot_backend("matplotlib") @@ -551,7 +551,7 @@ def parallel_coordinates( >>> df = pd.read_csv( ... "https://raw.githubusercontent.com/pandas-dev/" ... "pandas/main/pandas/tests/io/data/csv/iris.csv" - ... ) + ... ) # doctest: +SKIP >>> pd.plotting.parallel_coordinates( ... df, "Name", color=("#556270", "#4ECDC4", "#C7F464") ... ) # doctest: +SKIP