-
Notifications
You must be signed in to change notification settings - Fork 70
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
Use provided bin values for bin domains. #159
Use provided bin values for bin domains. #159
Conversation
If the user provides a set of bin values, and these match the domain of the data, use these under the assumption that the user has sorted the bin values according to their preferred order.
Codecov Report
@@ Coverage Diff @@
## master #159 +/- ##
==========================================
- Coverage 80.53% 80.31% -0.23%
==========================================
Files 109 109
Lines 2415 2423 +8
Branches 568 568
==========================================
+ Hits 1945 1946 +1
- Misses 290 297 +7
Partials 180 180
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #159 +/- ##
=========================================
- Coverage 80.53% 80.34% -0.2%
=========================================
Files 109 109
Lines 2415 2422 +7
Branches 568 568
=========================================
+ Hits 1945 1946 +1
- Misses 290 296 +6
Partials 180 180
Continue to review full report at Codecov.
|
@maxburke thanks for the PR! 🙌 looks like there are some unrelated lint errors in the build for different packages so don't worry about those. it'd be great to have a test for this specific functionality then I'm happy to merge and should be able to get a release out soon thereafter 👍 |
cf1a6f6
to
20c13d0
Compare
Fantastic! I'll get the tests added. Apologies for adding the built files and the force-push revert; I forked this into an internal Gitlab server and accidentally pushed to the wrong repo :( |
If binValues is provided, ensure that the returned binDomain matches the order of the values provided.
I did add some tests, though I'm not quite sure why the code-coverage report wasn't re-run..? Do you have any further feedback? |
thanks @maxburke! there's something funny going on with the code-cov, travis looks 👌 though. will try and get this release out asap after I fix the lint errors that are failing the current build 👍 |
@maxburke this should be fixed in |
Awesome, thank you! |
🏆 Enhancements
If the user provides a set of bin values, and these match the domain of
the data, use these under the assumption that the user has sorted the
bin values according to their preferred order.