-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Fix SS06 formatting errors #29255
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
Fix SS06 formatting errors #29255
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1c46f99
Fix SS06 errors
profwacko 5f51037
Fix deprecation preceding extended summary error
profwacko 45b6866
Fix typo in pandas/core/frame.py
profwacko 226d7af
Update pandas/core/generic.py
profwacko cf3369e
Update pandas/plotting/_core.py
profwacko 7c628ab
Remove extended summaries
profwacko 97f5c76
Merge branch 'fix-docstring-format' of https://github.com/profwacko/p…
profwacko File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -814,8 +814,10 @@ def to_string( | |
@property | ||
def style(self): | ||
""" | ||
Property returning a Styler object containing methods for | ||
building a styled HTML representation fo the DataFrame. | ||
Returns a Styler object. | ||
|
||
Property returning a Styler object containing methods for building | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like the word
profwacko marked this conversation as resolved.
Show resolved
Hide resolved
|
||
a styled HTML representation fo the DataFrame. | ||
|
||
See Also | ||
-------- | ||
|
@@ -8207,6 +8209,8 @@ def to_timestamp(self, freq=None, how="start", axis=0, copy=True): | |
|
||
def to_period(self, freq=None, axis=0, copy=True): | ||
""" | ||
Convert DataFrame from DatetimeIndex to PeriodIndex. | ||
|
||
Convert DataFrame from DatetimeIndex to PeriodIndex with desired | ||
frequency (inferred from index if not passed). | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5766,11 +5766,13 @@ def ftypes(self): | |
|
||
def as_blocks(self, copy=True): | ||
""" | ||
Convert the frame to a dict of dtype -> Constructor Types that each has | ||
a homogeneous dtype. | ||
Convert the frame to a dict of dtype. | ||
profwacko marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
.. deprecated:: 0.21.0 | ||
|
||
Convert the frame to a dict of dtype-> Constructor Types that each | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove this as well; just duplicative |
||
has a homogeneous dtype. | ||
|
||
NOTE: the dtypes of the blocks WILL BE PRESERVED HERE (unlike in | ||
as_matrix) | ||
|
||
|
@@ -9428,9 +9430,10 @@ def shift(self, periods=1, freq=None, axis=0, fill_value=None): | |
|
||
def slice_shift(self, periods=1, axis=0): | ||
""" | ||
Equivalent to `shift` without copying data. The shifted data will | ||
not include the dropped periods and the shifted axis will be smaller | ||
than the original. | ||
Equivalent to `shift` without copying data. | ||
|
||
The shifted data will not include the dropped periods and the | ||
shifted axis will be smaller than the original. | ||
|
||
Parameters | ||
---------- | ||
|
@@ -10739,10 +10742,11 @@ def nanptp(values, axis=0, skipna=True): | |
name, | ||
name2, | ||
axis_descr, | ||
"""Return the difference between the maximum value and the | ||
"""Return the difference between the min and max value. | ||
\n.. deprecated:: 0.24.0 Use numpy.ptp instead | ||
\nReturn the difference between the maximum value and the | ||
minimum value in the object. This is the equivalent of the | ||
``numpy.ndarray`` method ``ptp``.\n\n.. deprecated:: 0.24.0 | ||
Use numpy.ptp instead""", | ||
``numpy.ndarray`` method ``ptp``.""", | ||
nanptp, | ||
) | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can remove this extended summary; it says the same thing as the first line