pandas.plotting.scatter_matrix — pandas 0.24.0rc1 documentation (original) (raw)
frame : DataFrame
alpha : float, optional
amount of transparency applied
figsize : (float,float), optional
a tuple (width, height) in inches
ax : Matplotlib axis object, optional
grid : bool, optional
setting this to True will show the grid
diagonal : {‘hist’, ‘kde’}
pick between ‘kde’ and ‘hist’ for either Kernel Density Estimation or Histogram plot in the diagonal
marker : str, optional
Matplotlib marker type, default ‘.’
hist_kwds : other plotting keyword arguments
To be passed to hist function
density_kwds : other plotting keyword arguments
To be passed to kernel density estimate plot
range_padding : float, optional
relative extension of axis range in x and y with respect to (x_max - x_min) or (y_max - y_min), default 0.05
kwds : other plotting keyword arguments
To be passed to scatter function