(axis, skipna, ddof)
| 374 | ) |
| 375 | @pytest.mark.parametrize("ddof", [1, 2]) |
| 376 | def test_std_kwargs(axis, skipna, ddof): |
| 377 | pdf = pd.DataFrame( |
| 378 | {"x": range(30), "y": [1, 2, None] * 10, "z": ["dog", "cat"] * 15} |
| 379 | ) |
| 380 | df = from_pandas(pdf, npartitions=3) |
| 381 | assert_eq( |
| 382 | pdf.std(axis=axis, skipna=skipna, ddof=ddof, numeric_only=True), |
| 383 | df.std(axis=axis, skipna=skipna, ddof=ddof, numeric_only=True), |
| 384 | ) |
| 385 | |
| 386 | |
| 387 | def test_mean_series_axis_none(df, pdf): |
nothing calls this directly
no test coverage detected
searching dependent graphs…