plot_scatter_matrix
Plot a matrix of scatter plots. A subset of max 250 random samples are selected from every column to not clutter the plot.
Parameters: |
columns: slice, sequence or None, optional (default=None)
title: str or None, optional (default=None)
figsize: tuple, optional (default=(10, 10))
filename: str or None, optional (default=None)
display: bool or None, optional (default=True)
**kwargs |
Returns: |
fig: matplotlib.figure.Figure Plot object. Only returned if display=None .
|
Example
from atom import ATOMClassifier
atom = ATOMClassifier(X, y)
atom.plot_scatter_matrix(columns=slice(0, 5))