File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
97
97
-i " pandas.errors.ValueLabelTypeMismatch SA01" \
98
98
-i " pandas.io.json.build_table_schema PR07,RT03,SA01" \
99
99
-i " pandas.plotting.andrews_curves RT03,SA01" \
100
- -i " pandas.plotting.scatter_matrix PR07,SA01" \
101
100
-i " pandas.tseries.offsets.BDay PR02,SA01" \
102
101
-i " pandas.tseries.offsets.BQuarterBegin.is_on_offset GL08" \
103
102
-i " pandas.tseries.offsets.BQuarterBegin.n GL08" \
Original file line number Diff line number Diff line change @@ -178,14 +178,21 @@ def scatter_matrix(
178
178
"""
179
179
Draw a matrix of scatter plots.
180
180
181
+ Each pair of numeric columns in the DataFrame is plotted against each other,
182
+ resulting in a matrix of scatter plots. The diagonal plots can display either
183
+ histograms or Kernel Density Estimation (KDE) plots for each variable.
184
+
181
185
Parameters
182
186
----------
183
187
frame : DataFrame
188
+ The data to be plotted.
184
189
alpha : float, optional
185
190
Amount of transparency applied.
186
191
figsize : (float,float), optional
187
192
A tuple (width, height) in inches.
188
193
ax : Matplotlib axis object, optional
194
+ An existing Matplotlib axis object for the plots. If None, a new axis is
195
+ created.
189
196
grid : bool, optional
190
197
Setting this to True will show the grid.
191
198
diagonal : {'hist', 'kde'}
@@ -208,6 +215,14 @@ def scatter_matrix(
208
215
numpy.ndarray
209
216
A matrix of scatter plots.
210
217
218
+ See Also
219
+ --------
220
+ plotting.parallel_coordinates : Plots parallel coordinates for multivariate data.
221
+ plotting.andrews_curves : Generates Andrews curves for visualizing clusters of
222
+ multivariate data.
223
+ plotting.radviz : Creates a RadViz visualization.
224
+ plotting.bootstrap_plot : Visualizes uncertainty in data via bootstrap sampling.
225
+
211
226
Examples
212
227
--------
213
228
You can’t perform that action at this time.
0 commit comments