File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1317,7 +1317,7 @@ arbitrary function, for example:
1317
1317
df.groupby([' Store' , ' Product' ]).pipe(mean)
1318
1318
1319
1319
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
1321
1321
be any function that takes in a GroupBy object; the ``.pipe `` will pass the GroupBy
1322
1322
object as a parameter into the function you specify.
1323
1323
Original file line number Diff line number Diff line change @@ -370,7 +370,7 @@ Updated PyTables Support
370
370
df1.get_dtype_counts()
371
371
372
372
- performance improvements on table writing
373
- - support for arbitrarly indexed dimensions
373
+ - support for arbitrarily indexed dimensions
374
374
- ``SparseSeries `` now has a ``density `` property (:issue: `2384 `)
375
375
- enable ``Series.str.strip/lstrip/rstrip `` methods to take an input argument
376
376
to strip arbitrary characters (:issue: `2411 `)
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ groupby operations on the index will preserve the index nature as well
136
136
reindexing operations, will return a resulting index based on the type of the passed
137
137
indexer, meaning that passing a list will return a plain-old-``Index ``; indexing with
138
138
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
140
140
values NOT in the categories, similarly to how you can reindex ANY pandas index.
141
141
142
142
.. code-block :: ipython
You can’t perform that action at this time.
0 commit comments