10000 PR #7030 rebased by NelleV · Pull Request #7117 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

PR #7030 rebased #7117

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Sep 15, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load file 8000 s.
Loading
Diff view
Diff view
Prev Previous commit
DOC small fix on step function
  • Loading branch information
NelleV committed Sep 15, 2016
commit 331d78d073911eaeacc1b4eef70767d4c061c9f1
8 changes: 4 additions & 4 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1826,18 +1826,18 @@ def step(self, x, y, *args, **kwargs):
List of lines that were added.

Other parameters
---------------------
----------------
where : [ 'pre' | 'post' | 'mid' ]
If 'pre' (the default), the interval from
x[i] to x[i+1] has level y[i+1].

If 'post', that interval has level y[i].

If 'mid', the jumps in *y* occur half-way between the
*x*-values.
*x*-values.

Note
----
Notes
-----
Additional parameters are the same as those for
:func:`~matplotlib.pyplot.plot`.
"""
Expand Down
0