-
Notifications
You must be signed in to change notification settings - Fork 19
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
Feature/provide frequency #123
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
b80c62e
Remove unused var and clean a little
paulf81 9969099
Split the energy ratio calculation a little
paulf81 bba7348
Clarify test comments
paulf81 2365990
Add check of df_freq and specify datatype binning
paulf81 e740463
Update test for passing in frequency
paulf81 34b6ea1
Allow passing in of frequency table
paulf81 b187337
Change count weight to weight
paulf81 500744c
Include details of missed bins
paulf81 ab27a41
Add enforcement all ws/wd appear in all dataframes
paulf81 c33fcbb
Redo tests and add for missing bin on one side
paulf81 06d66c6
Add more tests for df_freq
paulf81 db0f1f4
Add checks on ws/wd missing on df_freq
paulf81 13df246
Add tests
paulf81 abe8e86
Polars deprecating groupby to group_by
paulf81 6de33f4
Computing df_freq explicitly.
misi9170 9744500
Clearer about resampling on first bootstrap call.
misi9170 1e2bb52
df_freq now wired through to Output object.
misi9170 bd3c68c
Compute ws freqs alone, if needed.
misi9170 bd27ab9
Now handling uplift plots correctly.
misi9170 94a6c26
Option to overlay df_freq weighting.
misi9170 9372c2b
Renaming to frequency for clarity.
misi9170 65097ce
Remove commented code and nomralize weights
paulf81 bdb9e62
Update comment
paulf81 6626ec5
Rerun example notebook.
misi9170 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
94 changes: 91 additions & 3 deletions
94
examples_smarteole/05_baseline_energy_ratio_analysis.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
98 changes: 48 additions & 50 deletions
98
examples_smarteole/06_wake_steering_energy_ratio_analysis.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
maybe not important to address now, but really we just want to make sure each ws/wd bin combination appears in both data frames for each uplift pair right, not all data frames in the case where there are more than two?
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.
I think this implementation is the most general, say you want to compare a data partioned into 3 stability types, this checks that each type has at least one point in the used bins. I think it's a fair qualifier.