8000 DOC: Extend docstring pandas core index to_frame method by stijnvanhoey · Pull Request #20036 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC: Extend docstring pandas core index to_frame method #20036

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
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
Move default to same line of type
  • Loading branch information
stijnvanhoey authored Mar 7, 2018
commit 535eba967c825fb1f42cb886fac8e029e372a3d7
5 changes: 2 additions & 3 deletions pandas/core/indexes/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1116,9 +1116,8 @@ def to_frame(self, index=True):

Parameters
----------
index : boolean
Set the index of the returned DataFrame as the original Index
(default True).
index : boolean (default True)
Set the index of the returned DataFrame as the original Index.

Returns
-------
Expand Down
0