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