Skip to content

Commit

Permalink
Matplotlib implementation of scatter histogram
Browse files Browse the repository at this point in the history
  • Loading branch information
Maitreyee1 committed Nov 28, 2020
1 parent 4733bd8 commit b7e8e52
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mlxtend/plotting/scatter_hist.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@ def scatter_hist(x, y, data):
x : str or int
DataFrame column name of the x-axis values or
integer for the numpy ndarray column index.
y : str
y : str or int
DataFrame column name of the y-axis values or
integer for the numpy ndarray column index
data : Pandas DataFrame object or NumPy ndarray.
Returns
---------
plot : matplotlib pyplot figure object
"""
left, width = 0.1, 0.65
bottom, height = 0.1, 0.65
Expand Down

0 comments on commit b7e8e52

Please sign in to comment.