Skip to content

Commit 0533949

Browse files
DOC: fix PR07,RT03,SA01 for pandas.plotting.parallel_coordinates
1 parent b0c4194 commit 0533949

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
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.plotting.table PR07,RT03,SA01" \
483482
-i "pandas.qcut PR07,SA01" \

pandas/plotting/_misc.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,7 @@ def parallel_coordinates(
472472
Parameters
473473
----------
474474
frame : DataFrame
475+
The DataFrame to be plotted.
475476
class_column : str
476477
Column name containing class names.
477478
cols : list, optional
@@ -498,6 +499,13 @@ def parallel_coordinates(
498499
Returns
499500
-------
500501
matplotlib.axes.Axes
502+
The matplotlib axes containing the parallel coordinates plot.
503+
504+
See Also
505+
--------
506+
plotting.andrews_curves : Generate a matplotlib plot for visualizing clusters
507+
of multivariate data.
508+
plotting.radviz : Plot a multidimensional dataset in 2D.
501509
502510
Examples
503511
--------

0 commit comments

Comments
 (0)