Skip to content

DOC: Clarify display.precision #37030

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 3 commits into from
Oct 12, 2020
Merged
Changes from all commits
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
7 changes: 4 additions & 3 deletions pandas/core/config_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,9 @@ def use_numba_cb(key):

pc_precision_doc = """
: int
Floating point output precision (number of significant digits). This is
only a suggestion
Floating point output precision in terms of number of places after the
decimal, for regular formatting as well as scientific notation. Similar
to ``precision`` in :meth:`numpy.set_printoptions`.
"""

pc_colspace_doc = """
Expand Down Expand Up @@ -249,7 +250,7 @@ def use_numba_cb(key):

pc_max_seq_items = """
: int or None
when pretty-printing a long sequence, no more then `max_seq_items`
When pretty-printing a long sequence, no more then `max_seq_items`
will be printed. If items are omitted, they will be denoted by the
addition of "..." to the resulting string.

Expand Down