-
-
Notifications
You must be signed in to change notification settings - Fork 16
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
Rename rowmean_n()
to row_means()
#448
Conversation
Fixes #447
Still needs some fixing, though. |
Codecov Report
@@ Coverage Diff @@
## main #448 +/- ##
==========================================
+ Coverage 88.61% 88.63% +0.02%
==========================================
Files 71 71
Lines 5182 5192 +10
==========================================
+ Hits 4592 4602 +10
Misses 590 590
|
NEWS.md
Outdated
@@ -2,8 +2,8 @@ | |||
|
|||
NEW FUNCTIONS | |||
|
|||
* `rowmean_n()`, to compute row means if row contains at least `n` non-missing | |||
values. | |||
* `row_means()`, to compute row means, optionally only for those row with at |
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.
why is it plural means ? doesn't it return just the mean?
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.
Like rowMeans()
from base R, it computes mean_s_ of several rows.
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.
@IndrajeetPatil are you ok with this new name?
Co-authored-by: Etienne Bacher <52219252+etiennebacher@users.noreply.github.com>
ping @IndrajeetPatil |
Fixes #447