I am often interested in understanding the relationship between one specific column (my target variable) and the others.
It would be nice if we could pass a target variable when creating the EDA report: i.e. eda.create_report(target="has_survived").
Then all variable plots would all be crossed with this target variable. You already have this functionality in the eda.plot(df, target) function from the docs.
This is a functionality that I like to use in the sweetviz library:
I am often interested in understanding the relationship between one specific column (my target variable) and the others.
It would be nice if we could pass a target variable when creating the EDA report: i.e.
eda.create_report(target="has_survived")
.Then all variable plots would all be crossed with this target variable. You already have this functionality in the
eda.plot(df, target)
function from the docs.This is a functionality that I like to use in the sweetviz library: