(self, axis=0, skipna=True, ddof=1, numeric_only=False, split_every=False)
| 295 | raise ValueError(f"axis={axis} not supported. Please specify 0 or 1") |
| 296 | |
| 297 | def std(self, axis=0, skipna=True, ddof=1, numeric_only=False, split_every=False): |
| 298 | return Sqrt(self.var(axis, skipna, ddof, numeric_only, split_every=split_every)) |
| 299 | |
| 300 | def mean(self, skipna=True, numeric_only=False, split_every=False, axis=0): |
| 301 | return Mean( |