-
Notifications
You must be signed in to change notification settings - Fork 10
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
ENH: simple HTML representation for LosslessPipeline #146
Conversation
- HTML repr for LosslessPipeline - string repr for flaggedCHs - flaggedICs displays the dataframe upon call - flaggedICs no longer subclasses dict, but subclasses a Dataframe directly, thus removing the .data_frame method. This is because at this point we have finished the pipeline, dashboard, and rejection policy, and have never used the flaggedICs dictionary, we only use the dataframe directly. Thus it makes more sense just to use this dataframe, and it makes the dataframe is no longer hidden from the user behind an empty dict class
Codecov Report
@@ Coverage Diff @@
## main #146 +/- ##
==========================================
+ Coverage 68.33% 69.86% +1.52%
==========================================
Files 14 16 +2
Lines 960 1012 +52
==========================================
+ Hits 656 707 +51
- Misses 304 305 +1
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
@christian-oreilly FYI in response to our discussion, the difference between |
self merging since this is mainly aesthetic. |
Now, this is what displays when calling a
LosslessPipeline
instance:Which can be uncollapsed:
FlaggedChs
andFlaggedICs
now have nicer__repr__
's too: