@@ -2108,7 +2108,7 @@ def thin(
2108
2108
indexers : Union [Mapping [Hashable , int ], int ] = None ,
2109
2109
** indexers_kwargs : Any ,
2110
2110
) -> "Dataset" :
2111
- """Returns a new dataset with each array indexed along every `n`th
2111
+ """Returns a new dataset with each array indexed along every `n`- th
2112
2112
value for the specified dimension(s)
2113
2113
2114
2114
Parameters
@@ -3467,6 +3467,7 @@ def merge(
3467
3467
'no_conflicts'}, optional
3468
3468
String indicating how to compare variables of the same name for
3469
3469
potential conflicts:
3470
+
3470
3471
- 'broadcast_equals': all values must be equal when variables are
3471
3472
broadcast against each other to ensure common dimensions.
3472
3473
- 'equals': all values and dimensions must be the same.
@@ -3475,6 +3476,7 @@ def merge(
3475
3476
- 'no_conflicts': only values which are not null in both datasets
3476
3477
must be equal. The returned dataset then contains the combination
3477
3478
of all non-null values.
3479
+
3478
3480
join : {'outer', 'inner', 'left', 'right', 'exact'}, optional
3479
3481
Method for joining ``self`` and ``other`` along shared dimensions:
3480
3482
@@ -3615,7 +3617,7 @@ def drop_sel(self, labels=None, *, errors="raise", **labels_kwargs):
3615
3617
in the dataset. If 'ignore', any given labels that are in the
3616
3618
dataset are dropped and no error is raised.
3617
3619
**labels_kwargs : {dim: label, ...}, optional
3618
- The keyword arguments form of ``dim`` and ``labels`
3620
+ The keyword arguments form of ``dim`` and ``labels``
3619
3621
3620
3622
Returns
3621
3623
-------
@@ -3907,6 +3909,7 @@ def interpolate_na(
3907
3909
method : {'linear', 'nearest', 'zero', 'slinear', 'quadratic', 'cubic',
3908
3910
'polynomial', 'barycentric', 'krog', 'pchip',
3909
3911
'spline'}, optional
3912
+
3910
3913
String indicating which method to use for interpolation:
3911
3914
3912
3915
- 'linear': linear interpolation (Default). Additional keyword
@@ -5218,7 +5221,7 @@ def integrate(self, coord, datetime_unit=None):
5218
5221
datetime_unit
5219
5222
Can be specify the unit if datetime coordinate is used. One of
5220
5223
{'Y', 'M', 'W', 'D', 'h', 'm', 's', 'ms', 'us', 'ns', 'ps', 'fs',
5221
- 'as'}
5224
+ 'as'}
5222
5225
5223
5226
Returns
5224
5227
-------
0 commit comments