Skip to content

Commit 5ccd42c

Browse files
tnirPingviinituutti
authored andcommitted
Fix typos in docs (pandas-dev#25305)
1 parent 866530b commit 5ccd42c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/source/user_guide/groupby.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1317,7 +1317,7 @@ arbitrary function, for example:
13171317
df.groupby(['Store', 'Product']).pipe(mean)
13181318
13191319
where ``mean`` takes a GroupBy object and finds the mean of the Revenue and Quantity
1320-
columns repectively for each Store-Product combination. The ``mean`` function can
1320+
columns respectively for each Store-Product combination. The ``mean`` function can
13211321
be any function that takes in a GroupBy object; the ``.pipe`` will pass the GroupBy
13221322
object as a parameter into the function you specify.
13231323

doc/source/whatsnew/v0.10.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ Updated PyTables Support
370370
df1.get_dtype_counts()
371371
372372
- performance improvements on table writing
373-
- support for arbitrarly indexed dimensions
373+
- support for arbitrarily indexed dimensions
374374
- ``SparseSeries`` now has a ``density`` property (:issue:`2384`)
375375
- enable ``Series.str.strip/lstrip/rstrip`` methods to take an input argument
376376
to strip arbitrary characters (:issue:`2411`)

doc/source/whatsnew/v0.16.1.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ groupby operations on the index will preserve the index nature as well
136136
reindexing operations, will return a resulting index based on the type of the passed
137137
indexer, meaning that passing a list will return a plain-old-``Index``; indexing with
138138
a ``Categorical`` will return a ``CategoricalIndex``, indexed according to the categories
139-
of the PASSED ``Categorical`` dtype. This allows one to arbitrarly index these even with
139+
of the PASSED ``Categorical`` dtype. This allows one to arbitrarily index these even with
140140
values NOT in the categories, similarly to how you can reindex ANY pandas index.
141141

142142
.. code-block:: ipython

0 commit comments

Comments
 (0)