-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
DOC: Fix to_latex docstring. #22516
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
DOC: Fix to_latex docstring. #22516
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2521,69 +2521,102 @@ def to_xarray(self): | |
coords=coords, | ||
) | ||
|
||
_shared_docs['to_latex'] = r""" | ||
def to_latex(self, buf=None, columns=None, col_space=None, header=True, | ||
index=True, na_rep='NaN', formatters=None, float_format=None, | ||
sparsify=None, index_names=True, bold_rows=False, | ||
column_format=None, longtable=None, escape=None, | ||
encoding=None, decimal='.', multicolumn=None, | ||
multicolumn_format=None, multirow=None): | ||
r""" | ||
Render an object to a tabular environment table. You can splice | ||
this into a LaTeX document. Requires \\usepackage{booktabs}. | ||
this into a LaTeX document. Requires \usepackage{booktabs}. | ||
|
||
.. versionchanged:: 0.20.2 | ||
Added to Series | ||
|
||
`to_latex`-specific options: | ||
|
||
Parameters | ||
---------- | ||
buf : StringIO-like, optional | ||
Buffer to write to. | ||
columns : sequence, optional, default None | ||
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. No ened for |
||
The subset of columns to write. Writes all columns by default. | ||
col_space : int, optional | ||
The minimum width of each column. | ||
header : bool or list of str, default True | ||
Write out the column names. If a list of strings is given, | ||
it is assumed to be aliases for the column names. | ||
index : bool, default True | ||
Write row names (index). | ||
na_rep : str, default 'NaN' | ||
Missing data representation. | ||
formatters : list or dict of one-param. functions, optional | ||
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. The type is a bit confusing. Don't know what it's expected, would it be |
||
Formatter functions to apply to columns' elements by position or | ||
name. The result of each function must be a unicode string. | ||
List must be of length equal to the number of columns. | ||
float_format : str, default None | ||
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.
|
||
Format string for floating point numbers. | ||
sparsify : bool, optional, default None | ||
Set to False for a DataFrame with a hierarchical index to print | ||
every multiindex key at each row. | ||
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. Do you know if 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. They are not the same, in
|
||
index_names : bool, optional, default True | ||
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. unnecessary optional |
||
Prints the names of the indexes. | ||
bold_rows : boolean, default False | ||
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.
|
||
Make the row labels bold in the output | ||
Make the row labels bold in the output. | ||
column_format : str, default None | ||
The columns format as specified in `LaTeX table format | ||
<https://en.wikibooks.org/wiki/LaTeX/Tables>`__ e.g 'rcl' for 3 | ||
columns | ||
longtable : boolean, default will be read from the pandas config module | ||
Default: False. | ||
Use a longtable environment instead of tabular. Requires adding | ||
a \\usepackage{longtable} to your LaTeX preamble. | ||
escape : boolean, default will be read from the pandas config module | ||
<https://en.wikibooks.org/wiki/LaTeX/Tables>`__ e.g. 'rcl' for 3 | ||
columns. | ||
longtable : bool, default None | ||
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. should it be 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. In this case it should be When the When the |
||
When set to None, the value will default from the pandas config | ||
module. Use a longtable environment instead of tabular. Requires | ||
adding a \usepackage{longtable} to your LaTeX preamble. | ||
escape : bool, default will be read from the pandas config module | ||
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. can you leave here simple |
||
Default: True. | ||
When set to False prevents from escaping latex special | ||
characters in column names. | ||
encoding : str, default None | ||
A string representing the encoding to use in the output file, | ||
defaults to 'ascii' on Python 2 and 'utf-8' on Python 3. | ||
decimal : string, default '.' | ||
decimal : str, default '.' | ||
Character recognized as decimal separator, e.g. ',' in Europe. | ||
|
||
.. versionadded:: 0.18.0 | ||
|
||
multicolumn : boolean, default True | ||
multicolumn : bool, default True | ||
Use \multicolumn to enhance MultiIndex columns. | ||
The default will be read from the config module. | ||
|
||
.. versionadded:: 0.20.0 | ||
|
||
multicolumn_format : str, default 'l' | ||
The alignment for multicolumns, similar to `column_format` | ||
The default will be read from the config module. | ||
|
||
.. versionadded:: 0.20.0 | ||
multirow : bool, default False | ||
Use \multirow to enhance MultiIndex rows. Requires adding a | ||
\usepackage{multirow} to your LaTeX preamble. Will print | ||
centered labels (instead of top-aligned) across the contained | ||
rows, separating groups via clines. The default will be read | ||
from the pandas config module. | ||
.. versionadded:: 0.20.0 | ||
|
||
multirow : boolean, default False | ||
Use \multirow to enhance MultiIndex rows. | ||
Requires adding a \\usepackage{multirow} to your LaTeX preamble. | ||
Will print centered labels (instead of top-aligned) | ||
across the contained rows, separating groups via clines. | ||
The default will be read from the pandas config module. | ||
Returns | ||
------- | ||
str or None | ||
If buf is None, returns the resulting LateX format as a | ||
string. Otherwise returns None. | ||
|
||
.. versionadded:: 0.20.0 | ||
""" | ||
See Also | ||
-------- | ||
DataFrame.to_csv : Write a DataFrame to CSV format. | ||
DataFrame.to_excel : Write a DataFrame to an Excel file. | ||
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. I'd have |
||
|
||
@Substitution(header='Write out the column names. If a list of strings ' | ||
'is given, it is assumed to be aliases for the ' | ||
'column names.') | ||
@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, | ||
sparsify=None, index_names=True, bold_rows=False, | ||
column_format=None, longtable=None, escape=None, | ||
encoding=None, decimal='.', multicolumn=None, | ||
multicolumn_format=None, multirow=None): | ||
Examples | ||
-------- | ||
>>> df = pd.DataFrame({'name': ['Raphael', 'Donatello'], | ||
... 'mask': ['red', 'purple'], | ||
... 'weapon': ['sai', 'bo staff']}) | ||
>>> df.to_latex(index=False) # doctest: +NORMALIZE_WHITESPACE | ||
'\\begin{tabular}{lll}\n\\toprule\n name & mask & weapon | ||
\\\\\n\\midrule\n Raphael & red & sai \\\\\n Donatello & | ||
purple & bo staff \\\\\n\\bottomrule\n\\end{tabular}\n' | ||
""" | ||
# Get defaults from the pandas config | ||
if self.ndim == 1: | ||
self = self.to_frame() | ||
|
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.
More than StringIO-like I'd say this is a file descriptor. I guess as other methods, if
None
, the output is returned as a string. I think in this cases we usually sayfile descriptor or None
, instead of optional, but in either case, we want to explain that ifNone
it returns the string.