@@ -28,7 +28,7 @@ You can get/set options directly as attributes of the top-level ``options`` attr
28
28
pd.options.display.max_rows = 999
29
29
pd.options.display.max_rows
30
30
31
- There is also an API composed of 5 relevant functions, available directly from the ``pandas ``
31
+ The API is composed of 5 relevant functions, available directly from the ``pandas ``
32
32
namespace:
33
33
34
34
- :func: `~pandas.get_option ` / :func: `~pandas.set_option ` - get/set the value of a single option.
@@ -40,7 +40,7 @@ namespace:
40
40
**Note: ** developers can check out pandas/core/config.py for more info.
41
41
42
42
All of the functions above accept a regexp pattern (``re.search `` style) as an argument,
43
- and so passing in a substring will work - as long as it is unambiguous :
43
+ and so passing in a substring will work - as long as it is unambiguous:
44
44
45
45
.. ipython :: python
46
46
@@ -241,7 +241,7 @@ suggestion.
241
241
df
242
242
243
243
``display.chop_threshold `` sets at what level pandas rounds to zero when
244
- it displays a Series of DataFrame. Note, this does not effect the
244
+ it displays a Series of DataFrame. Note, this does not effect the
245
245
precision at which the number is stored.
246
246
247
247
.. ipython :: python
@@ -420,15 +420,15 @@ mode.chained_assignment warn Raise an exception, warn, or no
420
420
action if trying to use chained
421
421
assignment, The default is warn
422
422
mode.sim_interactive False Whether to simulate interactive mode
423
- for purposes of testing
423
+ for purposes of testing.
424
424
mode.use_inf_as_null False True means treat None, NaN, -INF,
425
425
INF as null (old way), False means
426
426
None and NaN are null, but INF, -INF
427
427
are not null (new way).
428
428
compute.use_bottleneck True Use the bottleneck library to accelerate
429
- computation if it is installed
429
+ computation if it is installed.
430
430
compute.use_numexpr True Use the numexpr library to accelerate
431
- computation if it is installed
431
+ computation if it is installed.
432
432
=================================== ============ ==================================
433
433
434
434
0 commit comments