sfu-db / dataprep

Open-source low code data preparation library in python. Collect, clean and visualization your data in python with a few lines of code.
http://dataprep.ai
MIT License
1.99k stars 203 forks source link

plot_diff error for titanic dataset #848

Closed jinglinpeng closed 2 years ago

jinglinpeng commented 2 years ago

To Reproduce

from dataprep.eda import plot_diff
from dataprep.datasets import load_dataset
import pandas as pd
df1 = load_dataset("titanic")
other_columns =[x for x in df1.columns if x != "Survived"]
df2 = df1[other_columns]
plot_diff([df1, df2],config={"diff.label": ["train_df", "test_df"]}).show_browser()

image