8000 Docstring bootstrap plot by aydevosotros · Pull Request #20166 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Docstring bootstrap plot #20166

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
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 files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Doc bootstrap_plot: Fixed some comments on pull requests
  • Loading branch information
Antonio Molina committed Mar 10, 2018
commit d783d20a87fb3f72515952df403caed88718e3d8
6 changes: 2 additions & 4 deletions pandas/plotting/_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,13 +349,11 @@ def bootstrap_plot(series, fig=None, size=50, samples=500, **kwds):

Returns
-------

fig : matplotlib.figure.Figure
Matplotlib figure

See Also
--------

pandas.DataFrame.plot : Basic plotting for DataFrame objects.
pandas.Series.plot : Basic plotting for Series objects.

Expand All @@ -365,8 +363,8 @@ def bootstrap_plot(series, fig=None, size=50, samples=500, **kwds):
.. plot::
:context: close-figs

>>> from random import uniform
>>> s = pd.Series([uniform(0, 1) for _ in range(100)])
>>> import numpy as np
>>> s = pd.Series(np.random.uniform(size=100))
>>> fig = pd.plotting.bootstrap_plot(s)
"""
import random
Expand Down
0