File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 151151 "DataArray" : "~xarray.DataArray" ,
152152 "Dataset" : "~xarray.Dataset" ,
153153 "Variable" : "~xarray.Variable" ,
154- "DatasetGroupBy" : "~xarray.core.weighted .DatasetGroupBy" ,
155- "DataArrayGroupBy" : "~xarray.core.weighted .DataArrayGroupBy" ,
154+ "DatasetGroupBy" : "~xarray.core.groupby .DatasetGroupBy" ,
155+ "DataArrayGroupBy" : "~xarray.core.groupby .DataArrayGroupBy" ,
156156 # objects without namespace: numpy
157157 "ndarray" : "~numpy.ndarray" ,
158158 "MaskedArray" : "~numpy.ma.MaskedArray" ,
Original file line number Diff line number Diff line change @@ -1036,8 +1036,7 @@ def apply_ufunc(
10361036 Most of NumPy's builtin functions already broadcast their inputs
10371037 appropriately for use in ``apply_ufunc``. You may find helper functions such as
10381038 :py:func:`numpy.broadcast_arrays` helpful in writing your function. ``apply_ufunc`` also
1039- works well with :py:func:`numba.vectorize` and :py:func:`numba.guvectorize`. Further explanation with
1040- examples are provided in the xarray documentation [3]_.
1039+ works well with :py:func:`numba.vectorize` and :py:func:`numba.guvectorize`.
10411040
10421041 See Also
10431042 --------
@@ -1047,12 +1046,12 @@ def apply_ufunc(
10471046 dask.array.apply_gufunc
10481047 xarray.map_blocks
10491048 :ref:`dask.automatic-parallelization`
1049+ User guide describing :py:func:`apply_ufunc` and :py:func:`map_blocks`.
10501050
10511051 References
10521052 ----------
10531053 .. [1] http://docs.scipy.org/doc/numpy/reference/ufuncs.html
10541054 .. [2] http://docs.scipy.org/doc/numpy/reference/c-api.generalized-ufuncs.html
1055- .. [3] http://xarray.pydata.org/en/stable/computation.html#wrapping-custom-computation
10561055 """
10571056 from .dataarray import DataArray
10581057 from .groupby import GroupBy
You can’t perform that action at this time.
0 commit comments