You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I like anyValue() and I'd like to add anyGreater(), anyLess(), anyGreaterOrEqual() etc plus all of the row and column variants. I often find myself doing any(x > 3) or something like that and these calculations are inefficient in base R because the whole of x > 3 gets calculated.
I can do this as a PR but I want to make sure you like the idea before going and doing it. If you like it, advice on how to name these functions would be appreciated.
The text was updated successfully, but these errors were encountered:
I like
anyValue()
and I'd like to addanyGreater()
,anyLess()
,anyGreaterOrEqual()
etc plus all of the row and column variants. I often find myself doingany(x > 3)
or something like that and these calculations are inefficient in base R because the whole ofx > 3
gets calculated.I can do this as a PR but I want to make sure you like the idea before going and doing it. If you like it, advice on how to name these functions would be appreciated.
The text was updated successfully, but these errors were encountered: