Skip to content

Commit 762fd78

Browse files
orbitfoldwesm
authored andcommitted
Updated plotting.py scatter_matrix docstring to describe all the parameters
1 parent e5f75aa commit 762fd78

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pandas/tools/plotting.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ def scatter_matrix(frame, alpha=0.5, figsize=None, ax=None, grid=False,
1919
2020
Parameters
2121
----------
22+
alpha : amount of transparency applied
23+
figsize : a tuple (width, height) in inches
24+
ax : Matplotlib axis object
25+
grid : setting this to True will show the grid
26+
diagonal : pick between 'kde' and 'hist' for
27+
either Kernel Density Estimation or Histogram
28+
plon in the diagonal
2229
kwds : other plotting keyword arguments
2330
To be passed to scatter function
2431
@@ -48,7 +55,7 @@ def scatter_matrix(frame, alpha=0.5, figsize=None, ax=None, grid=False,
4855
axes[i, j].plot(ind, gkde.evaluate(ind), **kwds)
4956
else:
5057
axes[i, j].scatter(df[b], df[a], alpha=alpha, **kwds)
51-
58+
5259
axes[i, j].set_xlabel('')
5360
axes[i, j].set_ylabel('')
5461
axes[i, j].set_xticklabels([])

0 commit comments

Comments
 (0)