You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
sweetviz.analyze(source, target_feat)
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: