Skip to content

Commit 8c23911

Browse files
DOC: fix PR07,RT03,SA01 for pandas.plotting.parallel_coordinates (#58894)
1 parent 2e93c63 commit 8c23911

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
477477
-i "pandas.plotting.andrews_curves RT03,SA01" \
478478
-i "pandas.plotting.autocorrelation_plot RT03,SA01" \
479479
-i "pandas.plotting.lag_plot RT03,SA01" \
480-
-i "pandas.plotting.parallel_coordinates PR07,RT03,SA01" \
481480
-i "pandas.plotting.scatter_matrix PR07,SA01" \
482481
-i "pandas.qcut PR07,SA01" \
483482
-i "pandas.read_spss SA01" \

pandas/plotting/_misc.py

+8
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,7 @@ def parallel_coordinates(
479479
Parameters
480480
----------
481481
frame : DataFrame
482+
The DataFrame to be plotted.
482483
class_column : str
483484
Column name containing class names.
484485
cols : list, optional
@@ -505,6 +506,13 @@ def parallel_coordinates(
505506
Returns
506507
-------
507508
matplotlib.axes.Axes
509+
The matplotlib axes containing the parallel coordinates plot.
510+
511+
See Also
512+
--------
513+
plotting.andrews_curves : Generate a matplotlib plot for visualizing clusters
514+
of multivariate data.
515+
plotting.radviz : Plot a multidimensional dataset in 2D.
508516
509517
Examples
510518
--------

0 commit comments

Comments
 (0)