(
self,
ddof=1,
split_every=None,
split_out=None,
numeric_only=False,
shuffle_method=None,
)
| 1895 | |
| 1896 | @derived_from(pd.core.groupby.GroupBy) |
| 1897 | def std( |
| 1898 | self, |
| 1899 | ddof=1, |
| 1900 | split_every=None, |
| 1901 | split_out=None, |
| 1902 | numeric_only=False, |
| 1903 | shuffle_method=None, |
| 1904 | ): |
| 1905 | if not numeric_only and not self._all_numeric(): |
| 1906 | raise NotImplementedError( |
| 1907 | "'numeric_only=False' is not implemented in Dask." |
| 1908 | ) |
| 1909 | result = new_collection( |
| 1910 | Std( |
| 1911 | self.obj.expr, |
| 1912 | ddof, |
| 1913 | numeric_only, |
| 1914 | split_out, |
| 1915 | split_every, |
| 1916 | self.sort, |
| 1917 | self.dropna, |
| 1918 | self.observed, |
| 1919 | shuffle_method, |
| 1920 | *self.by, |
| 1921 | ) |
| 1922 | ) |
| 1923 | return self._postprocess_series_squeeze(result) |
| 1924 | |
| 1925 | @_aggregate_docstring(based_on="pd.core.groupby.DataFrameGroupBy.agg") |
| 1926 | def aggregate( |
nothing calls this directly
no test coverage detected