Skip to content

Commit

Permalink
Merge pull request matplotlib#6140 from kylerbrown/scatter-doc2
Browse files Browse the repository at this point in the history
DOC: clarified color argument in scatter
  • Loading branch information
tacaswell committed May 22, 2016
1 parent 14d2342 commit 659f42e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/matplotlib/axes/_axes.py
Expand Up @@ -3718,7 +3718,7 @@ def scatter(self, x, y, s=20, c=None, marker='o', cmap=None, norm=None,
**kwargs):
"""
Make a scatter plot of x vs y, where x and y are sequence like objects
of the same lengths.
of the same length.
Parameters
----------
Expand All @@ -3728,7 +3728,7 @@ def scatter(self, x, y, s=20, c=None, marker='o', cmap=None, norm=None,
s : scalar or array_like, shape (n, ), optional, default: 20
size in points^2.
c : color or sequence of color, optional, default : 'b'
c : color, sequence, or sequence of color, optional, default: 'b'
`c` can be a single color format string, or a sequence of color
specifications of length `N`, or a sequence of `N` numbers to be
mapped to colors using the `cmap` and `norm` specified via kwargs
Expand Down

0 comments on commit 659f42e

Please sign in to comment.