@@ -354,7 +354,7 @@ class providing the base-class of operations.
354
354
----------
355
355
func : function, str, list or dict
356
356
Function to use for aggregating the data. If a function, must either
357
- work when passed a %( klass)s or when passed to %( klass)s .apply.
357
+ work when passed a { klass} or when passed to { klass} .apply.
358
358
359
359
Accepted combinations are:
360
360
@@ -385,7 +385,7 @@ class providing the base-class of operations.
385
385
* For ``'numba'`` engine, the engine can accept ``nopython``, ``nogil``
386
386
and ``parallel`` dictionary keys. The values must either be ``True`` or
387
387
``False``. The default ``engine_kwargs`` for the ``'numba'`` engine is
388
- ``{'nopython': True, 'nogil': False, 'parallel': False}`` and will be
388
+ ``{{ 'nopython': True, 'nogil': False, 'parallel': False} }`` and will be
389
389
applied to the function
390
390
391
391
.. versionadded:: 1.1.0
@@ -394,20 +394,20 @@ class providing the base-class of operations.
394
394
395
395
Returns
396
396
-------
397
- %( klass)s
397
+ { klass}
398
398
399
399
See Also
400
400
--------
401
- %( klass)s .groupby.apply
402
- %( klass)s .groupby.transform
403
- %( klass)s .aggregate
401
+ { klass} .groupby.apply
402
+ { klass} .groupby.transform
403
+ { klass} .aggregate
404
404
405
405
Notes
406
406
-----
407
407
When using ``engine='numba'``, there will be no "fall back" behavior internally.
408
408
The group data and group index will be passed as numpy arrays to the JITed
409
409
user defined function, and no alternative execution attempts will be tried.
410
- %( examples)s
410
+ { examples}
411
411
"""
412
412
413
413
0 commit comments