Skip to content

Commit 83b5188

Browse files
committed
DOC: Clarify display.precision
- Fix #21004
1 parent 3a043f2 commit 83b5188

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pandas/core/config_init.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,9 @@ def use_numba_cb(key):
8585

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

9293
pc_colspace_doc = """
@@ -249,7 +250,7 @@ def use_numba_cb(key):
249250

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

0 commit comments

Comments
 (0)