-
Notifications
You must be signed in to change notification settings - Fork 46
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
Fix issue #380 #381
Fix issue #380 #381
Conversation
const-ae
commented
Nov 15, 2018
- Reset .Random.seed after impute::impute.knn is called
- Reset .Random.seed after impute::impute.knn is called
I think you are missing a comma before the curly bracket test_that("seed is not set by knn imputation method" { But well done for adding a unit test! |
Oh yeah, you are right. I fixed the issue in my fork. Do I have to make a new pull request or does Github automatically see the new commit? |
Codecov Report
@@ Coverage Diff @@
## master #381 +/- ##
==========================================
+ Coverage 71.36% 71.36% +<.01%
==========================================
Files 82 82
Lines 8280 8284 +4
==========================================
+ Hits 5909 5912 +3
- Misses 2371 2372 +1
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.
@const-ae Great that you find such an error and created a PR. I have a few minor suggestions.
Co-Authored-By: const-ae <const-ae@users.noreply.github.com>
Co-Authored-By: const-ae <const-ae@users.noreply.github.com>
Co-Authored-By: const-ae <const-ae@users.noreply.github.com>
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.
Thanks for the changes. Could you please add an entry in the NEWS.md
file (with a short description of the problem, a reference to the issue/PR and your name)?
Co-Authored-By: const-ae <const-ae@users.noreply.github.com>
Thanks for helping me make a good PR. |
Great thanks! (The NEWS file is generated automatically by a .git/hook (which we all have locally, so if any one of us will create a commit the NEWS file will be updated, if you are interested in something like that please have a look at: maker |
Thanks, for the pointer. It looks like a quite useful project, but I have to admit I am still slightly intimidated by all the make stuff ;) |
Thank you both for the PR and the code review! |