Skip to content

Commit

Permalink
fix(eda): add test to plot_missing
Browse files Browse the repository at this point in the history
  • Loading branch information
Waterpine authored and dovahcrow committed Jan 6, 2021
1 parent 9e59aa0 commit 303a13e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dataprep/tests/eda/test_plot_missing.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@ def test_sanity_compute_6(simpledf: dd.DataFrame) -> None:
compute_missing(simpledf, y="b")


def test_sanity_compute_7() -> None:
df = pd.DataFrame([[1, 2, 3]])
simpledf = to_dask(df)
itmdt = compute_missing(simpledf)
render_missing(itmdt)


def test_no_missing() -> None:
from sys import platform

Expand Down

0 comments on commit 303a13e

Please sign in to comment.