-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
MAINT: Remove non-standard and inconsistently-used imports #17085
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
Changes from 1 commit
2220d6a
894daa2
55919f1
a556fd9
640be57
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1702,8 +1702,9 @@ def to_xarray(self): | |
.. versionadded:: 0.20.0 | ||
""" | ||
|
||
@Substitution(header='Write out column names. If a list of string is given, \ | ||
it is assumed to be aliases for the column names.') | ||
@Substitution(header='Write out column names. If a list of string is ' | ||
'given, it is assumed to be aliases for the column ' | ||
'names.') | ||
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. Same comments as above 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. Same comment as above, but with 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. Same answer as above |
||
@Appender(_shared_docs['to_latex'] % _shared_doc_kwargs) | ||
def to_latex(self, buf=None, columns=None, col_space=None, header=True, | ||
index=True, na_rep='NaN', formatters=None, float_format=None, | ||
|
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.
Write out column --> Write out the column
list of string --> list of strings
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.
Happy to make this edit, but note that this substitution appears to be copy/pasted from the
to_csv
docstring. Should the same edit be made there?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.
Yes, absolutely! Go ahead and patch that there too. Perhaps we need to share that documentation somewhere.