File tree 5 files changed +7
-7
lines changed
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -418,7 +418,7 @@ You can also include the grouping columns if you want to operate on them.
418
418
419
419
.. note ::
420
420
421
- The ``groupby `` operation in Pandas drops the ``name `` field of the columns Index object
421
+ The ``groupby `` operation in pandas drops the ``name `` field of the columns Index object
422
422
after the operation. This change ensures consistency in syntax between different
423
423
column selection methods within groupby operations.
424
424
Original file line number Diff line number Diff line change @@ -990,7 +990,7 @@ Thousand separators
990
990
991
991
For large numbers that have been written with a thousands separator, you can
992
992
set the ``thousands `` keyword to a string of length 1 so that integers will be parsed
993
- correctly:
993
+ correctly.
994
994
995
995
By default, numbers with a thousands separator will be parsed as strings:
996
996
Original file line number Diff line number Diff line change @@ -586,7 +586,7 @@ A string argument to ``indicator`` will use the value as the name for the indica
586
586
Overlapping value columns
587
587
~~~~~~~~~~~~~~~~~~~~~~~~~
588
588
589
- The merge ``suffixes `` argument takes a tuple of list of strings to append to
589
+ The merge ``suffixes `` argument takes a tuple or list of strings to append to
590
590
overlapping column names in the input :class: `DataFrame ` to disambiguate the result
591
591
columns:
592
592
@@ -979,7 +979,7 @@ nearest key rather than equal keys. For each row in the ``left`` :class:`DataFra
979
979
the last row in the ``right `` :class: `DataFrame ` are selected where the ``on `` key is less
980
980
than the left's key. Both :class: `DataFrame ` must be sorted by the key.
981
981
982
- Optionally an :func: `merge_asof ` can perform a group-wise merge by matching the
982
+ Optionally :func: `merge_asof ` can perform a group-wise merge by matching the
983
983
``by `` key in addition to the nearest match on the ``on `` key.
984
984
985
985
.. ipython :: python
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Scaling to large datasets
5
5
*************************
6
6
7
7
pandas provides data structures for in-memory analytics, which makes using pandas
8
- to analyze datasets that are larger than memory datasets somewhat tricky. Even datasets
8
+ to analyze datasets that are larger than memory somewhat tricky. Even datasets
9
9
that are a sizable fraction of memory become unwieldy, as some pandas operations need
10
10
to make intermediate copies.
11
11
Original file line number Diff line number Diff line change @@ -1580,7 +1580,7 @@ the pandas objects.
1580
1580
ts = ts[:5 ]
1581
1581
ts.shift(1 )
1582
1582
1583
- The ``shift `` method accepts an ``freq `` argument which can accept a
1583
+ The ``shift `` method accepts a ``freq `` argument which can accept a
1584
1584
``DateOffset `` class or other ``timedelta ``-like object or also an
1585
1585
:ref: `offset alias <timeseries.offset_aliases >`.
1586
1586
@@ -2570,7 +2570,7 @@ because daylight savings time (DST) in a local time zone causes some times to oc
2570
2570
twice within one day ("clocks fall back"). The following options are available:
2571
2571
2572
2572
* ``'raise' ``: Raises a ``ValueError `` (the default behavior)
2573
- * ``'infer' ``: Attempt to determine the correct offset base on the monotonicity of the timestamps
2573
+ * ``'infer' ``: Attempt to determine the correct offset based on the monotonicity of the timestamps
2574
2574
* ``'NaT' ``: Replaces ambiguous times with ``NaT ``
2575
2575
* ``bool ``: ``True `` represents a DST time, ``False `` represents non-DST time. An array-like of ``bool `` values is supported for a sequence of times.
2576
2576
You can’t perform that action at this time.
0 commit comments