-
Notifications
You must be signed in to change notification settings - Fork 883
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Warn user if primitives are unused during dfs #1073
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1073 +/- ##
==========================================
+ Coverage 98.35% 98.36% +0.01%
==========================================
Files 126 126
Lines 13161 13267 +106
==========================================
+ Hits 12944 13050 +106
Misses 217 217
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm! 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good
This PR implements changes that will issue a warning if a user supplies primitives to
dfs
that do not get used in generating the feature matrix. If the default primitives are used, this check is not performed - the check only happens when the user supplies a list of primitives.Added tests to check for warnings in a variety of situations including trans_primitives, agg_primitives, where_primitives, groupby_trans_primitives and custom primitives.