@@ -371,7 +371,7 @@ class providing the base-class of operations.
371
371
----------
372
372
func : function, str, list or dict
373
373
Function to use for aggregating the data. If a function, must either
374
- work when passed a %( klass)s or when passed to %( klass)s .apply.
374
+ work when passed a { klass} or when passed to { klass} .apply.
375
375
376
376
Accepted combinations are:
377
377
@@ -402,7 +402,7 @@ class providing the base-class of operations.
402
402
* For ``'numba'`` engine, the engine can accept ``nopython``, ``nogil``
403
403
and ``parallel`` dictionary keys. The values must either be ``True`` or
404
404
``False``. The default ``engine_kwargs`` for the ``'numba'`` engine is
405
- ``{'nopython': True, 'nogil': False, 'parallel': False}`` and will be
405
+ ``{{ 'nopython': True, 'nogil': False, 'parallel': False} }`` and will be
406
406
applied to the function
407
407
408
408
.. versionadded:: 1.1.0
@@ -411,20 +411,20 @@ class providing the base-class of operations.
411
411
412
412
Returns
413
413
-------
414
- %( klass)s
414
+ { klass}
415
415
416
416
See Also
417
417
--------
418
- %( klass)s .groupby.apply
419
- %( klass)s .groupby.transform
420
- %( klass)s .aggregate
418
+ { klass} .groupby.apply
419
+ { klass} .groupby.transform
420
+ { klass} .aggregate
421
421
422
422
Notes
423
423
-----
424
424
When using ``engine='numba'``, there will be no "fall back" behavior internally.
425
425
The group data and group index will be passed as numpy arrays to the JITed
426
426
user defined function, and no alternative execution attempts will be tried.
427
- %( examples)s
427
+ { examples}
428
428
"""
429
429
430
430
0 commit comments