@@ -2248,16 +2248,33 @@ def std(
2248
2248
axis : int, optional
2249
2249
Axis for the function to be applied on. For :class:`pandas.Series`
2250
2250
this parameter is unused and defaults to ``None``.
2251
+ dtype : dtype, optional, default None
2252
+ Type to use in computing the standard deviation. For arrays of
2253
+ integer type the default is float64, for arrays of float types
2254
+ it is the same as the array type.
2255
+ out : ndarray, optional, default None
2256
+ Alternative output array in which to place the result. It must have
2257
+ the same shape as the expected output but the type (of the
2258
+ calculated values) will be cast if necessary.
2251
2259
ddof : int, default 1
2252
2260
Degrees of Freedom. The divisor used in calculations is `N - ddof`,
2253
2261
where `N` represents the number of elements.
2262
+ keepdims : bool, optional
2263
+ If this is set to True, the axes which are reduced are left in the
2264
+ result as dimensions with size one. With this option, the result
2265
+ will broadcast correctly against the input array. If the default
2266
+ value is passed, then keepdims will not be passed through to the
2267
+ std method of sub-classes of ndarray, however any non-default value
2268
+ will be. If the sub-class method does not implement keepdims any
2269
+ exceptions will be raised.
2254
2270
skipna : bool, default True
2255
2271
Exclude NA/null values. If an entire row/column is ``NA``, the result
2256
2272
will be ``NA``.
2257
2273
2258
2274
Returns
2259
2275
-------
2260
2276
Timedelta
2277
+ Standard deviation over requested axis.
2261
2278
2262
2279
See Also
2263
2280
--------
0 commit comments