Skip to content
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

Various docstring fixes #28744

Merged

Commits on Oct 1, 2019

  1. DOC: Fixed PR02 docstring error in pandas Series idxmin and idxmax

    Simple error fixes for idxmin and idxmax regarding their docstrings
    ChiefMilesEdgeworth committed Oct 1, 2019
    Configuration menu
    Copy the full SHA
    a3e4315 View commit details
    Browse the repository at this point in the history
  2. DOC: Fixed other PR02 docstring errors in pandas Series class

    Fixed errors on swaplevel, rename, and drop methods
    ChiefMilesEdgeworth committed Oct 1, 2019
    Configuration menu
    Copy the full SHA
    d1f1ba0 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2019

  1. DOC: Fixed other PR02 docstring errors in pandas rolling and ewm files

    Fixed methods mean, std, var, and corr in ewm.py. 
    Fixed methods sum, apply, max, std, var, and quantile in rolling.py
    ChiefMilesEdgeworth committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    7fc0e35 View commit details
    Browse the repository at this point in the history
  2. DOC: Fixed other PR02 docstring errors in pandas plotting file

    Fixed functions table, scatter_matrix, radviz, bootstrap_plot, parallel_coordinates, lag_plot, and autocorrelation_plot. Noticed that functions with the @deprecate_kwarg decorator tend to not behave correctly with the tests.
    ChiefMilesEdgeworth committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    cd15cec View commit details
    Browse the repository at this point in the history
  3. DOC: Fixed other PR02 docstring errors in pandas frame.py file

    Fixed the docstring for transpose, eval, swaplevel, and melt in frame.py
    ChiefMilesEdgeworth committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    51bdc5d View commit details
    Browse the repository at this point in the history
  4. Ran Black

    Just missed the one line.
    ChiefMilesEdgeworth committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    ffe849f View commit details
    Browse the repository at this point in the history
  5. Flake8 Changes

    Caught small whitespace issues.
    ChiefMilesEdgeworth committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    f3b9540 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d5c0394 View commit details
    Browse the repository at this point in the history
  7. Test fixes

    Fixed errors shown by automated tests (PR04 and GL03)
    ChiefMilesEdgeworth committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    bedf748 View commit details
    Browse the repository at this point in the history
  8. DOC: Test fixes part 2

    Fixed issues shown by automated tests with error PR03.
    ChiefMilesEdgeworth committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    4d7a386 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2658caf View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2019

  1. DOC: Update args and kwargs to same line, other small changes

    Put args and kwargs back on the same line, since that's how the documentation should be. The validation script needs to be changed to catch this.
    ChiefMilesEdgeworth committed Oct 3, 2019
    Configuration menu
    Copy the full SHA
    532b53c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2f48f5a View commit details
    Browse the repository at this point in the history
  3. DOC: Missed whitespace

    Should've checked it before commiting. Two very small fixes
    ChiefMilesEdgeworth committed Oct 3, 2019
    Configuration menu
    Copy the full SHA
    2df56a2 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2019

  1. DOC: Fixing overlooked issues

    Merged *args and **kwargs, removed a duplicate documentation, and removed the type for **kwargs.
    ChiefMilesEdgeworth committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    ded2c0c View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2019

  1. Merge pull request #1 from pandas-dev/master

    Update Local Version
    ChiefMilesEdgeworth authored Oct 7, 2019
    Configuration menu
    Copy the full SHA
    5263577 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2019

  1. Configuration menu
    Copy the full SHA
    3b6f88c View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2019

  1. Configuration menu
    Copy the full SHA
    894f7d1 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2019

  1. Merge remote-tracking branch 'upstream/master'

    Updating to most recent version
    ChiefMilesEdgeworth committed Oct 11, 2019
    Configuration menu
    Copy the full SHA
    d687909 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ec3b412 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2019

  1. DOC: Revert back to multiple parameters on one line

    Moved a couple of index parameters onto the same line, and redid one parameter description
    ChiefMilesEdgeworth committed Oct 15, 2019
    Configuration menu
    Copy the full SHA
    494b997 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2c723a7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0507336 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2019

  1. DOC: Spacing fixed

    Added a space between a parameter and the colon.
    ChiefMilesEdgeworth committed Oct 16, 2019
    Configuration menu
    Copy the full SHA
    f631cb4 View commit details
    Browse the repository at this point in the history
  2. DOC: Fixed typos

    Fixed typos on documentation
    ChiefMilesEdgeworth committed Oct 16, 2019
    Configuration menu
    Copy the full SHA
    16fd88a View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2019

  1. Update pandas/core/frame.py

    I didn't know I could do this
    
    Co-Authored-By: Marc Garcia <garcia.marc@gmail.com>
    ChiefMilesEdgeworth and datapythonista authored Nov 8, 2019
    Configuration menu
    Copy the full SHA
    a5cbc8c View commit details
    Browse the repository at this point in the history
  2. Update pandas/core/window/ewm.py

    Small change to wording
    
    Co-Authored-By: Marc Garcia <garcia.marc@gmail.com>
    ChiefMilesEdgeworth and datapythonista authored Nov 8, 2019
    Configuration menu
    Copy the full SHA
    2a105c2 View commit details
    Browse the repository at this point in the history