File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -477,7 +477,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
477
477
-i " pandas.plotting.andrews_curves RT03,SA01" \
478
478
-i " pandas.plotting.autocorrelation_plot RT03,SA01" \
479
479
-i " pandas.plotting.lag_plot RT03,SA01" \
480
- -i " pandas.plotting.parallel_coordinates PR07,RT03,SA01" \
481
480
-i " pandas.plotting.scatter_matrix PR07,SA01" \
482
481
-i " pandas.qcut PR07,SA01" \
483
482
-i " pandas.read_spss SA01" \
Original file line number Diff line number Diff line change @@ -479,6 +479,7 @@ def parallel_coordinates(
479
479
Parameters
480
480
----------
481
481
frame : DataFrame
482
+ The DataFrame to be plotted.
482
483
class_column : str
483
484
Column name containing class names.
484
485
cols : list, optional
@@ -505,6 +506,13 @@ def parallel_coordinates(
505
506
Returns
506
507
-------
507
508
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.
508
516
509
517
Examples
510
518
--------
You can’t perform that action at this time.
0 commit comments