Forum: open-discussion


RE: Create a rollminr [ Reply ] By: Achim Zeileis on 2017-05-15 19:50 | [forum:45132] |
In principle this would be possible. However, we didn't do so because it would require at least three functions (rollmin, rollminr, rollmin.default) and we felt that was a bit too much given that it's just an obvious wrapper to rollmax. But we'll discuss it again...thanks for the suggestion! |
Create a rollminr [ Reply ] By: Jesse Limtiaco on 2017-05-15 19:29 | [forum:45131] |
Can we add a rollminr function to the library? It can be analogous to rollmaxr... rollminr <- function(x, ...) { -rollmaxr(-x, ...) } |