(pdf)
| 418 | |
| 419 | |
| 420 | def test_dropna(pdf): |
| 421 | pdf.loc[0, "y"] = np.nan |
| 422 | df = from_pandas(pdf) |
| 423 | assert_eq(df.dropna(), pdf.dropna()) |
| 424 | assert_eq(df.dropna(how="all"), pdf.dropna(how="all")) |
| 425 | assert_eq(df.y.dropna(), pdf.y.dropna()) |
| 426 | |
| 427 | |
| 428 | def test_value_counts_with_dropna(): |
nothing calls this directly
no test coverage detected